diff --git a/Cargo.toml b/Cargo.toml index f0ebce79b500..b16e0e02482a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [workspace] resolver = "2" exclude = [ - "examples/lambda", "examples/webassembly", - "examples/cross_service", "examples/test-utils", "examples/examples", + "examples/cross_service", + "examples/lambda", "tests/webassembly", "tests/no-default-features" ] diff --git a/aws-models/direct-connect.json b/aws-models/direct-connect.json index 62a44e160343..20932898b8ec 100644 --- a/aws-models/direct-connect.json +++ b/aws-models/direct-connect.json @@ -658,6 +658,32 @@ "smithy.api#input": {} } }, + "com.amazonaws.directconnect#AssociatedCoreNetwork": { + "type": "structure", + "members": { + "id": { + "target": "com.amazonaws.directconnect#CoreNetworkIdentifier", + "traits": { + "smithy.api#documentation": "
The ID of the Cloud WAN core network.
" + } + }, + "ownerAccount": { + "target": "com.amazonaws.directconnect#OwnerAccount", + "traits": { + "smithy.api#documentation": "The account owner of the Cloud WAN core network.
" + } + }, + "attachmentId": { + "target": "com.amazonaws.directconnect#CoreNetworkAttachmentId", + "traits": { + "smithy.api#documentation": "the ID of the Direct Connect attachment
" + } + } + }, + "traits": { + "smithy.api#documentation": "The Amazon Web Services Cloud WAN core network that the Direct Connect attachment is associated with.
" + } + }, "com.amazonaws.directconnect#AssociatedGateway": { "type": "structure", "members": { @@ -1366,6 +1392,26 @@ } } }, + "com.amazonaws.directconnect#CoreNetworkAttachmentId": { + "type": "string", + "traits": { + "smithy.api#length": { + "min": 12, + "max": 28 + }, + "smithy.api#pattern": "^attachment-([0-9a-f]{1,17})$" + } + }, + "com.amazonaws.directconnect#CoreNetworkIdentifier": { + "type": "string", + "traits": { + "smithy.api#length": { + "min": 14, + "max": 30 + }, + "smithy.api#pattern": "^core-network-([0-9a-f]{1,17})$" + } + }, "com.amazonaws.directconnect#Count": { "type": "integer", "traits": { @@ -3456,6 +3502,12 @@ "smithy.api#documentation": "The Amazon VPC prefixes to advertise to the Direct Connect gateway.
" } }, + "associatedCoreNetwork": { + "target": "com.amazonaws.directconnect#AssociatedCoreNetwork", + "traits": { + "smithy.api#documentation": "The ID of the Cloud WAN core network associated with the Direct Connect attachment.
" + } + }, "virtualGatewayId": { "target": "com.amazonaws.directconnect#VirtualGatewayId", "traits": { diff --git a/aws-models/networkmanager.json b/aws-models/networkmanager.json index 42f5b4a8174a..8000d04bff42 100644 --- a/aws-models/networkmanager.json +++ b/aws-models/networkmanager.json @@ -582,7 +582,13 @@ "EdgeLocation": { "target": "com.amazonaws.networkmanager#ExternalRegionCode", "traits": { - "smithy.api#documentation": "The Region where the edge is located.
" + "smithy.api#documentation": "The Region where the edge is located. This is returned for all attachment types except a Direct Connect gateway attachment, which instead returns EdgeLocations
.
The edge locations that the Direct Connect gateway is associated with. This is returned only for Direct Connect gateway attachments. All other attachment types retrun EdgeLocation
.
Creates an Amazon Web Services Direct Connect gateway attachment
", + "smithy.api#http": { + "method": "POST", + "uri": "/direct-connect-gateway-attachments", + "code": 200 + } + } + }, + "com.amazonaws.networkmanager#CreateDirectConnectGatewayAttachmentRequest": { + "type": "structure", + "members": { + "CoreNetworkId": { + "target": "com.amazonaws.networkmanager#CoreNetworkId", + "traits": { + "smithy.api#documentation": "The ID of the Cloud WAN core network that the Direct Connect gateway attachment should be attached to.
", + "smithy.api#required": {} + } + }, + "DirectConnectGatewayArn": { + "target": "com.amazonaws.networkmanager#DirectConnectGatewayArn", + "traits": { + "smithy.api#documentation": "The ARN of the Direct Connect gateway attachment.
", + "smithy.api#required": {} + } + }, + "EdgeLocations": { + "target": "com.amazonaws.networkmanager#ExternalRegionCodeList", + "traits": { + "smithy.api#documentation": "One or more core network edge locations that the Direct Connect gateway attachment is associated with.
", + "smithy.api#required": {} + } + }, + "Tags": { + "target": "com.amazonaws.networkmanager#TagList", + "traits": { + "smithy.api#documentation": "The key value tags to apply to the Direct Connect gateway attachment during creation.
" + } + }, + "ClientToken": { + "target": "com.amazonaws.networkmanager#ClientToken", + "traits": { + "smithy.api#documentation": "client token
", + "smithy.api#idempotencyToken": {} + } + } + }, + "traits": { + "smithy.api#input": {} + } + }, + "com.amazonaws.networkmanager#CreateDirectConnectGatewayAttachmentResponse": { + "type": "structure", + "members": { + "DirectConnectGatewayAttachment": { + "target": "com.amazonaws.networkmanager#DirectConnectGatewayAttachment", + "traits": { + "smithy.api#documentation": "Describes the details of a CreateDirectConnectGatewayAttachment
request.
The Direct Connect gateway attachment ARN.
" + } + } + }, + "traits": { + "smithy.api#documentation": "Describes a Direct Connect gateway attachment.
" + } + }, "com.amazonaws.networkmanager#DisassociateConnectPeer": { "type": "operation", "input": { @@ -6140,6 +6290,70 @@ "smithy.api#output": {} } }, + "com.amazonaws.networkmanager#GetDirectConnectGatewayAttachment": { + "type": "operation", + "input": { + "target": "com.amazonaws.networkmanager#GetDirectConnectGatewayAttachmentRequest" + }, + "output": { + "target": "com.amazonaws.networkmanager#GetDirectConnectGatewayAttachmentResponse" + }, + "errors": [ + { + "target": "com.amazonaws.networkmanager#AccessDeniedException" + }, + { + "target": "com.amazonaws.networkmanager#InternalServerException" + }, + { + "target": "com.amazonaws.networkmanager#ResourceNotFoundException" + }, + { + "target": "com.amazonaws.networkmanager#ThrottlingException" + }, + { + "target": "com.amazonaws.networkmanager#ValidationException" + } + ], + "traits": { + "smithy.api#documentation": "Returns information about a specific Amazon Web Services Direct Connect gateway attachment.
", + "smithy.api#http": { + "method": "GET", + "uri": "/direct-connect-gateway-attachments/{AttachmentId}", + "code": 200 + } + } + }, + "com.amazonaws.networkmanager#GetDirectConnectGatewayAttachmentRequest": { + "type": "structure", + "members": { + "AttachmentId": { + "target": "com.amazonaws.networkmanager#AttachmentId", + "traits": { + "smithy.api#documentation": "The ID of the Direct Connect gateway attachment that you want to see details about.
", + "smithy.api#httpLabel": {}, + "smithy.api#required": {} + } + } + }, + "traits": { + "smithy.api#input": {} + } + }, + "com.amazonaws.networkmanager#GetDirectConnectGatewayAttachmentResponse": { + "type": "structure", + "members": { + "DirectConnectGatewayAttachment": { + "target": "com.amazonaws.networkmanager#DirectConnectGatewayAttachment", + "traits": { + "smithy.api#documentation": "Shows details about the Direct Connect gateway attachment.
" + } + } + }, + "traits": { + "smithy.api#output": {} + } + }, "com.amazonaws.networkmanager#GetLinkAssociations": { "type": "operation", "input": { @@ -8719,6 +8933,9 @@ { "target": "com.amazonaws.networkmanager#CreateDevice" }, + { + "target": "com.amazonaws.networkmanager#CreateDirectConnectGatewayAttachment" + }, { "target": "com.amazonaws.networkmanager#CreateGlobalNetwork" }, @@ -8824,6 +9041,9 @@ { "target": "com.amazonaws.networkmanager#GetDevices" }, + { + "target": "com.amazonaws.networkmanager#GetDirectConnectGatewayAttachment" + }, { "target": "com.amazonaws.networkmanager#GetLinkAssociations" }, @@ -8929,6 +9149,9 @@ { "target": "com.amazonaws.networkmanager#UpdateDevice" }, + { + "target": "com.amazonaws.networkmanager#UpdateDirectConnectGatewayAttachment" + }, { "target": "com.amazonaws.networkmanager#UpdateGlobalNetwork" }, @@ -12606,6 +12829,79 @@ "smithy.api#output": {} } }, + "com.amazonaws.networkmanager#UpdateDirectConnectGatewayAttachment": { + "type": "operation", + "input": { + "target": "com.amazonaws.networkmanager#UpdateDirectConnectGatewayAttachmentRequest" + }, + "output": { + "target": "com.amazonaws.networkmanager#UpdateDirectConnectGatewayAttachmentResponse" + }, + "errors": [ + { + "target": "com.amazonaws.networkmanager#AccessDeniedException" + }, + { + "target": "com.amazonaws.networkmanager#ConflictException" + }, + { + "target": "com.amazonaws.networkmanager#InternalServerException" + }, + { + "target": "com.amazonaws.networkmanager#ResourceNotFoundException" + }, + { + "target": "com.amazonaws.networkmanager#ThrottlingException" + }, + { + "target": "com.amazonaws.networkmanager#ValidationException" + } + ], + "traits": { + "smithy.api#documentation": "Updates the edge locations associated with an Amazon Web Services Direct Connect gateway attachment.
", + "smithy.api#http": { + "method": "PATCH", + "uri": "/direct-connect-gateway-attachments/{AttachmentId}", + "code": 200 + } + } + }, + "com.amazonaws.networkmanager#UpdateDirectConnectGatewayAttachmentRequest": { + "type": "structure", + "members": { + "AttachmentId": { + "target": "com.amazonaws.networkmanager#AttachmentId", + "traits": { + "smithy.api#documentation": "The ID of the Direct Connect gateway attachment for the updated edge locations.
", + "smithy.api#httpLabel": {}, + "smithy.api#required": {} + } + }, + "EdgeLocations": { + "target": "com.amazonaws.networkmanager#ExternalRegionCodeList", + "traits": { + "smithy.api#documentation": "One or more edge locations to update for the Direct Connect gateway attachment. The updated array of edge locations overwrites the previous array of locations. EdgeLocations
is only used for Direct Connect gateway attachments. Do
Returns details of the Direct Connect gateway attachment with the updated edge locations.
" + } + } + }, + "traits": { + "smithy.api#output": {} + } + }, "com.amazonaws.networkmanager#UpdateGlobalNetwork": { "type": "operation", "input": { diff --git a/aws-models/s3.json b/aws-models/s3.json index dbd1d52d435d..307ac393f313 100644 --- a/aws-models/s3.json +++ b/aws-models/s3.json @@ -18559,6 +18559,13 @@ "smithy.api#httpHeader": "x-amz-expected-bucket-owner" } }, + "IfMatch": { + "target": "com.amazonaws.s3#IfMatch", + "traits": { + "smithy.api#documentation": "Uploads the object only if the ETag (entity tag) value provided during the WRITE\n operation matches the ETag of the object in S3. If the ETag values do not match, the\n operation returns a 412 Precondition Failed
error.
If a conflicting operation occurs during the upload S3 returns a 409\n ConditionalRequestConflict
response. On a 409 failure you should fetch the object's ETag, re-initiate the\n multipart upload with CreateMultipartUpload
, and re-upload each part.
Expects the ETag value as a string.
\nFor more information about conditional requests, see RFC 7232, or Conditional requests in the Amazon S3 User Guide.
", + "smithy.api#httpHeader": "If-Match" + } + }, "IfNoneMatch": { "target": "com.amazonaws.s3#IfNoneMatch", "traits": { @@ -31038,7 +31045,7 @@ "requestAlgorithmMember": "ChecksumAlgorithm", "requestChecksumRequired": true }, - "smithy.api#documentation": "This operation is not supported for directory buckets.
\nWhen you enable versioning on a bucket for the first time, it might take a short\n amount of time for the change to be fully propagated. We recommend that you wait for 15\n minutes after enabling versioning before issuing write operations (PUT
or\n DELETE
) on objects in the bucket.
Sets the versioning state of an existing bucket.
\nYou can set the versioning state with one of the following values:
\n\n Enabled—Enables versioning for the objects in the\n bucket. All objects added to the bucket receive a unique version ID.
\n\n Suspended—Disables versioning for the objects in the\n bucket. All objects added to the bucket receive the version ID null.
\nIf the versioning state has never been set on a bucket, it has no versioning state; a\n GetBucketVersioning request does not return a versioning state value.
\nIn order to enable MFA Delete, you must be the bucket owner. If you are the bucket owner\n and want to enable MFA Delete in the bucket versioning configuration, you must include the\n x-amz-mfa request
header and the Status
and the\n MfaDelete
request elements in a request to set the versioning state of the\n bucket.
If you have an object expiration lifecycle configuration in your non-versioned bucket\n and you want to maintain the same permanent delete behavior when you enable versioning,\n you must add a noncurrent expiration policy. The noncurrent expiration lifecycle\n configuration will manage the deletes of the noncurrent object versions in the\n version-enabled bucket. (A version-enabled bucket maintains one current and zero or more\n noncurrent object versions.) For more information, see Lifecycle and Versioning.
\nThe following operations are related to PutBucketVersioning
:
\n CreateBucket\n
\n\n DeleteBucket\n
\n\n GetBucketVersioning\n
\nThis operation is not supported for directory buckets.
\nWhen you enable versioning on a bucket for the first time, it might take a short\n amount of time for the change to be fully propagated. While this change is propagating,\n you may encounter intermittent HTTP 404 NoSuchKey
errors for requests to\n objects created or updated after enabling versioning. We recommend that you wait for 15\n minutes after enabling versioning before issuing write operations (PUT
or\n DELETE
) on objects in the bucket.
Sets the versioning state of an existing bucket.
\nYou can set the versioning state with one of the following values:
\n\n Enabled—Enables versioning for the objects in the\n bucket. All objects added to the bucket receive a unique version ID.
\n\n Suspended—Disables versioning for the objects in the\n bucket. All objects added to the bucket receive the version ID null.
\nIf the versioning state has never been set on a bucket, it has no versioning state; a\n GetBucketVersioning request does not return a versioning state value.
\nIn order to enable MFA Delete, you must be the bucket owner. If you are the bucket owner\n and want to enable MFA Delete in the bucket versioning configuration, you must include the\n x-amz-mfa request
header and the Status
and the\n MfaDelete
request elements in a request to set the versioning state of the\n bucket.
If you have an object expiration lifecycle configuration in your non-versioned bucket\n and you want to maintain the same permanent delete behavior when you enable versioning,\n you must add a noncurrent expiration policy. The noncurrent expiration lifecycle\n configuration will manage the deletes of the noncurrent object versions in the\n version-enabled bucket. (A version-enabled bucket maintains one current and zero or more\n noncurrent object versions.) For more information, see Lifecycle and Versioning.
\nThe following operations are related to PutBucketVersioning
:
\n CreateBucket\n
\n\n DeleteBucket\n
\n\n GetBucketVersioning\n
\nUploads the object only if the ETag (entity tag) value provided during the WRITE\n operation matches the ETag of the object in S3. If the ETag values do not match, the\n operation returns a 412 Precondition Failed
error.
If a conflicting operation occurs during the upload S3 returns a 409 ConditionalRequestConflict
response. On a 409 failure you should fetch the object's ETag and retry the upload.
Expects the ETag value as a string.
\nFor more information about conditional requests, see RFC 7232, or Conditional requests in the Amazon S3 User Guide.
", + "smithy.api#httpHeader": "If-Match" + } + }, "IfNoneMatch": { "target": "com.amazonaws.s3#IfNoneMatch", "traits": { diff --git a/examples/cross_service/detect_faces/Cargo.toml b/examples/cross_service/detect_faces/Cargo.toml index 221bb72b588f..c3c89615c2f5 100644 --- a/examples/cross_service/detect_faces/Cargo.toml +++ b/examples/cross_service/detect_faces/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] aws-config= { version = "1.5.10", path = "../../../sdk/aws-config" } aws-sdk-rekognition= { version = "1.52.0", path = "../../../sdk/rekognition" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-smithy-types= { version = "1.2.9", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] } [dependencies.tokio] diff --git a/examples/cross_service/detect_labels/Cargo.toml b/examples/cross_service/detect_labels/Cargo.toml index a2023826cb1a..27ba91453187 100644 --- a/examples/cross_service/detect_labels/Cargo.toml +++ b/examples/cross_service/detect_labels/Cargo.toml @@ -10,7 +10,7 @@ kamadak-exif = "0.5.4" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config" } aws-sdk-dynamodb= { version = "1.54.0", path = "../../../sdk/dynamodb" } aws-sdk-rekognition= { version = "1.52.0", path = "../../../sdk/rekognition" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-smithy-types= { version = "1.2.9", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] } aws-types= { version = "1.3.3", path = "../../../sdk/aws-types" } diff --git a/examples/cross_service/photo_asset_management/Cargo.toml b/examples/cross_service/photo_asset_management/Cargo.toml index 80c00b926a39..53bd5bfc2ed5 100644 --- a/examples/cross_service/photo_asset_management/Cargo.toml +++ b/examples/cross_service/photo_asset_management/Cargo.toml @@ -33,7 +33,7 @@ tracing = "0.1.37" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config" } aws-sdk-dynamodb= { version = "1.54.0", path = "../../../sdk/dynamodb" } aws-sdk-rekognition= { version = "1.52.0", path = "../../../sdk/rekognition" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-sdk-sns= { version = "1.50.1", path = "../../../sdk/sns" } aws-smithy-runtime= { version = "1.7.3", path = "../../../sdk/aws-smithy-runtime" } aws-smithy-types-convert= { version = "0.60.8", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] } diff --git a/examples/cross_service/telephone/Cargo.toml b/examples/cross_service/telephone/Cargo.toml index ee06cf193302..2c647c13bd08 100644 --- a/examples/cross_service/telephone/Cargo.toml +++ b/examples/cross_service/telephone/Cargo.toml @@ -13,7 +13,7 @@ reqwest = "0.11.4" serde_json = "1.0" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config" } aws-sdk-polly= { version = "1.51.1", path = "../../../sdk/polly" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-sdk-transcribe= { version = "1.50.0", path = "../../../sdk/transcribe" } aws-smithy-types= { version = "1.2.9", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] } diff --git a/examples/examples/concurrency/Cargo.toml b/examples/examples/concurrency/Cargo.toml index 8158affb6ec6..4849de58f596 100644 --- a/examples/examples/concurrency/Cargo.toml +++ b/examples/examples/concurrency/Cargo.toml @@ -26,5 +26,5 @@ features = ["env-filter"] [dev-dependencies] fastrand = "1.8.0" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-sdk-sqs= { version = "1.49.0", path = "../../../sdk/sqs" } diff --git a/examples/examples/custom-root-certificates/Cargo.toml b/examples/examples/custom-root-certificates/Cargo.toml index 06e6dffbe367..acbaaba6e131 100644 --- a/examples/examples/custom-root-certificates/Cargo.toml +++ b/examples/examples/custom-root-certificates/Cargo.toml @@ -10,7 +10,7 @@ publish = false [dependencies] rustls = "0.21.9" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3", default-features = false } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3", default-features = false } aws-smithy-runtime= { version = "1.7.3", path = "../../../sdk/aws-smithy-runtime", features = ["tls-rustls"] } [dependencies.tokio] diff --git a/examples/examples/glue/Cargo.toml b/examples/examples/glue/Cargo.toml index d70fe91263ac..ba93431638a9 100644 --- a/examples/examples/glue/Cargo.toml +++ b/examples/examples/glue/Cargo.toml @@ -20,7 +20,7 @@ futures = "0.3.25" tracing-bunyan-formatter = "0.3.4" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } aws-sdk-glue= { version = "1.70.0", path = "../../../sdk/glue" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-http= { version = "0.60.6", path = "../../../sdk/aws-http" } aws-smithy-types= { version = "1.2.9", path = "../../../sdk/aws-smithy-types" } aws-types= { version = "1.3.3", path = "../../../sdk/aws-types" } diff --git a/examples/examples/iam/Cargo.toml b/examples/examples/iam/Cargo.toml index e6d1be052975..016cd362b890 100644 --- a/examples/examples/iam/Cargo.toml +++ b/examples/examples/iam/Cargo.toml @@ -24,7 +24,7 @@ lazy_static = "1.4.0" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } aws-credential-types= { version = "1.2.1", path = "../../../sdk/aws-credential-types", features = ["hardcoded-credentials"] } aws-sdk-iam= { version = "1.52.0", path = "../../../sdk/iam" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-sdk-sts= { version = "1.50.0", path = "../../../sdk/sts" } [dependencies.sdk-examples-test-utils] diff --git a/examples/examples/lambda/Cargo.toml b/examples/examples/lambda/Cargo.toml index eac89a651746..425daca8dbc5 100644 --- a/examples/examples/lambda/Cargo.toml +++ b/examples/examples/lambda/Cargo.toml @@ -15,7 +15,7 @@ aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = [ aws-sdk-ec2= { version = "1.92.0", path = "../../../sdk/ec2" } aws-sdk-iam= { version = "1.52.0", path = "../../../sdk/iam" } aws-sdk-lambda= { version = "1.59.0", path = "../../../sdk/lambda" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-smithy-types= { version = "1.2.9", path = "../../../sdk/aws-smithy-types" } aws-types= { version = "1.3.3", path = "../../../sdk/aws-types" } diff --git a/examples/examples/localstack/Cargo.toml b/examples/examples/localstack/Cargo.toml index 6866c829cdaf..fd452d8f8e3f 100644 --- a/examples/examples/localstack/Cargo.toml +++ b/examples/examples/localstack/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } [dependencies.tokio] version = "1" diff --git a/examples/examples/s3/Cargo.toml b/examples/examples/s3/Cargo.toml index 928ad03af043..32030998ecd1 100644 --- a/examples/examples/s3/Cargo.toml +++ b/examples/examples/s3/Cargo.toml @@ -24,7 +24,7 @@ tracing = "0.1.37" serde_json = "1" chrono = "0.4.38" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3", features = ["rt-tokio"] } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3", features = ["rt-tokio"] } aws-smithy-runtime= { version = "1.7.3", path = "../../../sdk/aws-smithy-runtime" } aws-smithy-runtime-api= { version = "1.7.3", path = "../../../sdk/aws-smithy-runtime-api", features = ["client"] } aws-smithy-types= { version = "1.2.9", path = "../../../sdk/aws-smithy-types", features = ["http-body-0-4-x"] } diff --git a/examples/examples/sdk-config/Cargo.toml b/examples/examples/sdk-config/Cargo.toml index 93a740c5f843..14b209bc209b 100644 --- a/examples/examples/sdk-config/Cargo.toml +++ b/examples/examples/sdk-config/Cargo.toml @@ -12,7 +12,7 @@ async_once = "0.2.6" tracing = "0.1.37" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } aws-credential-types= { version = "1.2.1", path = "../../../sdk/aws-credential-types" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } [dependencies.tokio] version = "1.20.1" diff --git a/examples/examples/sending-presigned-requests/Cargo.toml b/examples/examples/sending-presigned-requests/Cargo.toml index c6f89892d000..f196cd79bcd6 100644 --- a/examples/examples/sending-presigned-requests/Cargo.toml +++ b/examples/examples/sending-presigned-requests/Cargo.toml @@ -10,7 +10,7 @@ publish = false hyper-tls = "0.6.0" reqwest = "0.12.9" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3", features = ["http-1x"] } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3", features = ["http-1x"] } [dependencies.clap] version = "4.5.20" diff --git a/examples/examples/testing/Cargo.toml b/examples/examples/testing/Cargo.toml index 2290db0b7cd8..f98b7645de07 100644 --- a/examples/examples/testing/Cargo.toml +++ b/examples/examples/testing/Cargo.toml @@ -17,7 +17,7 @@ mockall = "0.11.4" serde_json = "1" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] } aws-credential-types= { version = "1.2.1", path = "../../../sdk/aws-credential-types", features = ["hardcoded-credentials"] } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } aws-smithy-types= { version = "1.2.9", path = "../../../sdk/aws-smithy-types" } aws-smithy-runtime= { version = "1.7.3", path = "../../../sdk/aws-smithy-runtime", features = ["test-util"] } aws-smithy-runtime-api= { version = "1.7.3", path = "../../../sdk/aws-smithy-runtime-api", features = ["test-util"] } diff --git a/examples/lambda/calculator/Cargo.toml b/examples/lambda/calculator/Cargo.toml index a68eff5a4fb8..cd6ca5543fe3 100644 --- a/examples/lambda/calculator/Cargo.toml +++ b/examples/lambda/calculator/Cargo.toml @@ -16,7 +16,7 @@ serde = "1.0.164" aws-config= { version = "1.5.10", path = "../../../sdk/aws-config" } aws-sdk-ec2= { version = "1.92.0", path = "../../../sdk/ec2" } aws-sdk-lambda= { version = "1.59.0", path = "../../../sdk/lambda" } -aws-sdk-s3= { version = "1.62.0", path = "../../../sdk/s3" } +aws-sdk-s3= { version = "1.63.0", path = "../../../sdk/s3" } [dependencies.clap] version = "~4.4" diff --git a/sdk/directconnect/Cargo.toml b/sdk/directconnect/Cargo.toml index 550f0aa30003..e77d3b71e669 100644 --- a/sdk/directconnect/Cargo.toml +++ b/sdk/directconnect/Cargo.toml @@ -1,7 +1,7 @@ # Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. [package] name = "aws-sdk-directconnect" -version = "1.50.0" +version = "1.51.0" authors = ["AWS Rust SDK Team