Skip to content

Commit 980425f

Browse files
Update SDK models
1 parent 9168d5b commit 980425f

File tree

146 files changed

+1881
-1078
lines changed

Some content is hidden

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

146 files changed

+1881
-1078
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[workspace]
22
exclude = [
3+
"examples/examples",
4+
"examples/webassembly",
35
"examples/cross_service",
46
"examples/lambda",
57
"examples/test-utils",
6-
"examples/examples",
7-
"examples/webassembly",
8-
"tests/no-default-features",
9-
"tests/webassembly"
8+
"tests/webassembly",
9+
"tests/no-default-features"
1010
]
1111
members = [
1212
"sdk/accessanalyzer",

aws-models/backup.json

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

aws-models/comprehend.json

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

aws-models/connect.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5627,6 +5627,12 @@
56275627
"smithy.api#documentation": "<p>Your contact center allows outbound calls.</p>",
56285628
"smithy.api#required": {}
56295629
}
5630+
},
5631+
"Tags": {
5632+
"target": "com.amazonaws.connect#TagMap",
5633+
"traits": {
5634+
"smithy.api#documentation": "<p>The tags used to organize, track, or control access for this resource. For example, <code>{ \"tags\": {\"key1\":\"value1\", \"key2\":\"value2\"} }</code>.</p>"
5635+
}
56305636
}
56315637
},
56325638
"traits": {
@@ -15894,6 +15900,12 @@
1589415900
"traits": {
1589515901
"smithy.api#documentation": "<p>This URL allows contact center users to access the Amazon Connect admin website.</p>"
1589615902
}
15903+
},
15904+
"Tags": {
15905+
"target": "com.amazonaws.connect#TagMap",
15906+
"traits": {
15907+
"smithy.api#documentation": "<p>The tags of an instance.</p>"
15908+
}
1589715909
}
1589815910
},
1589915911
"traits": {

aws-models/ec2.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13658,6 +13658,9 @@
1365813658
}
1365913659
}
1366013660
},
13661+
"com.amazonaws.ec2#CpuManufacturerName": {
13662+
"type": "string"
13663+
},
1366113664
"com.amazonaws.ec2#CpuManufacturerSet": {
1366213665
"type": "list",
1366313666
"member": {
@@ -82854,6 +82857,14 @@
8285482857
"smithy.api#documentation": "<p>Indicates whether the instance type supports AMD SEV-SNP. If the request returns \n <code>amd-sev-snp</code>, AMD SEV-SNP is supported. Otherwise, it is not supported. \n For more information, see <a href=\"https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html\">\n AMD SEV-SNP</a>.</p>",
8285582858
"smithy.api#xmlName": "supportedFeatures"
8285682859
}
82860+
},
82861+
"Manufacturer": {
82862+
"target": "com.amazonaws.ec2#CpuManufacturerName",
82863+
"traits": {
82864+
"aws.protocols#ec2QueryName": "Manufacturer",
82865+
"smithy.api#documentation": "<p>The manufacturer of the processor.</p>",
82866+
"smithy.api#xmlName": "manufacturer"
82867+
}
8285782868
}
8285882869
},
8285982870
"traits": {

aws-models/payment-cryptography.json

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

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.0.3", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1414
aws-sdk-autoscaling= { version = "1.4.0", path = "../../../sdk/autoscaling" }
15-
aws-sdk-ec2= { version = "1.4.0", path = "../../../sdk/ec2" }
15+
aws-sdk-ec2= { version = "1.5.0", path = "../../../sdk/ec2" }
1616
aws-types= { version = "1.0.3", 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.0.3", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1313
aws-sdk-ebs= { version = "1.4.0", path = "../../../sdk/ebs" }
14-
aws-sdk-ec2= { version = "1.4.0", path = "../../../sdk/ec2" }
14+
aws-sdk-ec2= { version = "1.5.0", 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
@@ -8,7 +8,7 @@ publish = false
88

99
[dependencies]
1010
aws-config= { version = "1.0.3", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
11-
aws-sdk-ec2= { version = "1.4.0", path = "../../../sdk/ec2" }
11+
aws-sdk-ec2= { version = "1.5.0", path = "../../../sdk/ec2" }
1212
aws-types= { version = "1.0.3", path = "../../../sdk/aws-types" }
1313

1414
[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.0.3", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
15-
aws-sdk-ec2= { version = "1.4.0", path = "../../../sdk/ec2" }
15+
aws-sdk-ec2= { version = "1.5.0", path = "../../../sdk/ec2" }
1616
aws-sdk-iam= { version = "1.4.0", path = "../../../sdk/iam" }
1717
aws-sdk-lambda= { version = "1.4.0", path = "../../../sdk/lambda" }
1818
aws-sdk-s3= { version = "1.5.0", path = "../../../sdk/s3" }

0 commit comments

Comments
 (0)