Skip to content

Commit eff2b9b

Browse files
Update SDK models
1 parent 919a755 commit eff2b9b

File tree

102 files changed

+1160
-556
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1160
-556
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[workspace]
22
resolver = "2"
33
exclude = [
4-
"examples/cross_service",
4+
"examples/lambda",
5+
"examples/webassembly",
56
"examples/examples",
7+
"examples/cross_service",
68
"examples/test-utils",
7-
"examples/webassembly",
8-
"examples/lambda",
9-
"tests/no-default-features",
109
"tests/webassembly",
11-
"tests/telemetry"
10+
"tests/telemetry",
11+
"tests/no-default-features"
1212
]
1313
members = [
1414
"sdk/accessanalyzer",

aws-models/directory-service-data.json

Lines changed: 450 additions & 4 deletions
Large diffs are not rendered by default.

aws-models/ec2.json

Lines changed: 57 additions & 57 deletions
Large diffs are not rendered by default.

aws-models/eventbridge.json

Lines changed: 55 additions & 26 deletions
Large diffs are not rendered by default.

aws-models/s3-control.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17645,7 +17645,7 @@
1764517645
"target": "smithy.api#Unit"
1764617646
},
1764717647
"traits": {
17648-
"smithy.api#documentation": "<p>Creates or replaces the access point scope for a directory bucket. You can use the access point scope to restrict access to specific prefixes, API operations, or a combination of both.</p>\n <p>You can include one or more of the following API operations as permissions:</p>\n <ul>\n <li>\n <p>\n <code>PutObjet</code>\n </p>\n </li>\n <li>\n <p>\n <code>GetObject</code>\n </p>\n </li>\n <li>\n <p>\n <code>DeleteObject</code>\n </p>\n </li>\n <li>\n <p>\n <code>ListBucket</code>\n </p>\n </li>\n <li>\n <p>\n <code>GetObjectAttributes</code>\n </p>\n </li>\n <li>\n <p>\n <code>AbortMultipartUpload</code>\n </p>\n </li>\n <li>\n <p>\n <code>ListBucketMultipartUpload</code>\n </p>\n </li>\n <li>\n <p>\n <code>ListMultiPartUploadParts</code>\n </p>\n </li>\n </ul>\n <note>\n <p>You can specify any amount of prefixes, but the total length of characters of all prefixes must be less than 512 KB in size.</p>\n </note>\n <p>To use this operation, you must have the permission to perform the\n <code>s3express:PutAccessPointScope</code> action.</p>\n <p>For information about REST API errors, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#RESTErrorResponses\">REST error responses</a>.</p>",
17648+
"smithy.api#documentation": "<p>Creates or replaces the access point scope for a directory bucket. You can use the access point scope to restrict access to specific prefixes, API operations, or a combination of both.</p>\n <note>\n <p>You can specify any amount of prefixes, but the total length of characters of all prefixes must be less than 256 bytes in size.</p>\n </note>\n <p>To use this operation, you must have the permission to perform the\n <code>s3express:PutAccessPointScope</code> action.</p>\n <p>For information about REST API errors, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#RESTErrorResponses\">REST error responses</a>.</p>",
1764917649
"smithy.api#http": {
1765017650
"method": "PUT",
1765117651
"uri": "/v20180820/accesspoint/{Name}/scope",
@@ -20020,7 +20020,7 @@
2002020020
"Prefixes": {
2002120021
"target": "com.amazonaws.s3control#PrefixesList",
2002220022
"traits": {
20023-
"smithy.api#documentation": "<p>You can specify any amount of prefixes, but the total length of characters of all prefixes must be less than 512 KB in size.</p>",
20023+
"smithy.api#documentation": "<p>You can specify any amount of prefixes, but the total length of characters of all prefixes must be less than 256 bytes in size.</p>",
2002420024
"smithy.api#xmlName": "Prefixes"
2002520025
}
2002620026
},

aws-models/sdk-endpoints.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15321,6 +15321,7 @@
1532115321
"ap-southeast-3" : { },
1532215322
"ap-southeast-4" : { },
1532315323
"ap-southeast-5" : { },
15324+
"ap-southeast-7" : { },
1532415325
"ca-central-1" : { },
1532515326
"ca-west-1" : { },
1532615327
"eu-central-1" : { },
@@ -15362,6 +15363,7 @@
1536215363
"il-central-1" : { },
1536315364
"me-central-1" : { },
1536415365
"me-south-1" : { },
15366+
"mx-central-1" : { },
1536515367
"sa-east-1" : { },
1536615368
"us-east-1" : {
1536715369
"variants" : [ {

examples/examples/auto-scaling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tracing = "0.1.37"
1212
tokio-stream = "0.1.14"
1313
aws-config= { version = "1.6.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1414
aws-sdk-autoscaling= { version = "1.72.0", path = "../../../sdk/autoscaling" }
15-
aws-sdk-ec2= { version = "1.121.0", path = "../../../sdk/ec2" }
15+
aws-sdk-ec2= { version = "1.121.1", path = "../../../sdk/ec2" }
1616
aws-types= { version = "1.3.6", path = "../../../sdk/aws-types" }
1717

1818
[dependencies.tokio]

examples/examples/ebs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ base64 = "0.13.0"
1111
sha2 = "0.9.5"
1212
aws-config= { version = "1.6.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1313
aws-sdk-ebs= { version = "1.64.0", path = "../../../sdk/ebs" }
14-
aws-sdk-ec2= { version = "1.121.0", path = "../../../sdk/ec2" }
14+
aws-sdk-ec2= { version = "1.121.1", path = "../../../sdk/ec2" }
1515

1616
[dependencies.tokio]
1717
version = "1.20.1"

examples/examples/ec2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ aws-smithy-runtime-api= { version = "1.7.4", path = "../../../sdk/aws-smithy-run
1515
aws-sdk-ssm= { version = "1.71.0", path = "../../../sdk/ssm" }
1616
aws-smithy-async= { version = "1.2.5", path = "../../../sdk/aws-smithy-async" }
1717
aws-config= { version = "1.6.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
18-
aws-sdk-ec2= { version = "1.121.0", path = "../../../sdk/ec2" }
18+
aws-sdk-ec2= { version = "1.121.1", path = "../../../sdk/ec2" }
1919
aws-types= { version = "1.3.6", path = "../../../sdk/aws-types" }
2020

2121
[dependencies.tokio]

examples/examples/lambda/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ anyhow = "1.0.71"
1212
lambda_runtime = "0.8.0"
1313
serde = "1.0.164"
1414
aws-config= { version = "1.6.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
15-
aws-sdk-ec2= { version = "1.121.0", path = "../../../sdk/ec2" }
15+
aws-sdk-ec2= { version = "1.121.1", path = "../../../sdk/ec2" }
1616
aws-sdk-iam= { version = "1.67.0", path = "../../../sdk/iam" }
1717
aws-sdk-lambda= { version = "1.75.0", path = "../../../sdk/lambda" }
1818
aws-sdk-s3= { version = "1.82.0", path = "../../../sdk/s3" }

0 commit comments

Comments
 (0)