aws-sdk-core 2.11.614 → 2.11.619

Sign up to get free protection for your applications and to get access to all the features.
@@ -919,7 +919,8 @@
919
919
  "SybaseSettings":{"shape":"SybaseSettings"},
920
920
  "MicrosoftSQLServerSettings":{"shape":"MicrosoftSQLServerSettings"},
921
921
  "IBMDb2Settings":{"shape":"IBMDb2Settings"},
922
- "ResourceIdentifier":{"shape":"String"}
922
+ "ResourceIdentifier":{"shape":"String"},
923
+ "DocDbSettings":{"shape":"DocDbSettings"}
923
924
  }
924
925
  },
925
926
  "CreateEndpointResponse":{
@@ -1508,6 +1509,20 @@
1508
1509
  "BucketName":{"shape":"String"}
1509
1510
  }
1510
1511
  },
1512
+ "DocDbSettings":{
1513
+ "type":"structure",
1514
+ "members":{
1515
+ "Username":{"shape":"String"},
1516
+ "Password":{"shape":"SecretString"},
1517
+ "ServerName":{"shape":"String"},
1518
+ "Port":{"shape":"IntegerOptional"},
1519
+ "DatabaseName":{"shape":"String"},
1520
+ "NestingLevel":{"shape":"NestingLevelValue"},
1521
+ "ExtractDocId":{"shape":"BooleanOptional"},
1522
+ "DocsToInvestigate":{"shape":"IntegerOptional"},
1523
+ "KmsKeyId":{"shape":"String"}
1524
+ }
1525
+ },
1511
1526
  "DynamoDbSettings":{
1512
1527
  "type":"structure",
1513
1528
  "required":["ServiceAccessRoleArn"],
@@ -1577,7 +1592,8 @@
1577
1592
  "OracleSettings":{"shape":"OracleSettings"},
1578
1593
  "SybaseSettings":{"shape":"SybaseSettings"},
1579
1594
  "MicrosoftSQLServerSettings":{"shape":"MicrosoftSQLServerSettings"},
1580
- "IBMDb2Settings":{"shape":"IBMDb2Settings"}
1595
+ "IBMDb2Settings":{"shape":"IBMDb2Settings"},
1596
+ "DocDbSettings":{"shape":"DocDbSettings"}
1581
1597
  }
1582
1598
  },
1583
1599
  "EndpointList":{
@@ -1880,7 +1896,8 @@
1880
1896
  "OracleSettings":{"shape":"OracleSettings"},
1881
1897
  "SybaseSettings":{"shape":"SybaseSettings"},
1882
1898
  "MicrosoftSQLServerSettings":{"shape":"MicrosoftSQLServerSettings"},
1883
- "IBMDb2Settings":{"shape":"IBMDb2Settings"}
1899
+ "IBMDb2Settings":{"shape":"IBMDb2Settings"},
1900
+ "DocDbSettings":{"shape":"DocDbSettings"}
1884
1901
  }
1885
1902
  },
1886
1903
  "ModifyEndpointResponse":{
@@ -137,6 +137,15 @@
137
137
  },
138
138
  "input":{"shape":"AssociateDhcpOptionsRequest"}
139
139
  },
140
+ "AssociateEnclaveCertificateIamRole":{
141
+ "name":"AssociateEnclaveCertificateIamRole",
142
+ "http":{
143
+ "method":"POST",
144
+ "requestUri":"/"
145
+ },
146
+ "input":{"shape":"AssociateEnclaveCertificateIamRoleRequest"},
147
+ "output":{"shape":"AssociateEnclaveCertificateIamRoleResult"}
148
+ },
140
149
  "AssociateIamInstanceProfile":{
141
150
  "name":"AssociateIamInstanceProfile",
142
151
  "http":{
@@ -2497,6 +2506,15 @@
2497
2506
  "input":{"shape":"DisassociateClientVpnTargetNetworkRequest"},
2498
2507
  "output":{"shape":"DisassociateClientVpnTargetNetworkResult"}
2499
2508
  },
2509
+ "DisassociateEnclaveCertificateIamRole":{
2510
+ "name":"DisassociateEnclaveCertificateIamRole",
2511
+ "http":{
2512
+ "method":"POST",
2513
+ "requestUri":"/"
2514
+ },
2515
+ "input":{"shape":"DisassociateEnclaveCertificateIamRoleRequest"},
2516
+ "output":{"shape":"DisassociateEnclaveCertificateIamRoleResult"}
2517
+ },
2500
2518
  "DisassociateIamInstanceProfile":{
2501
2519
  "name":"DisassociateIamInstanceProfile",
2502
2520
  "http":{
@@ -2647,6 +2665,15 @@
2647
2665
  "input":{"shape":"ExportTransitGatewayRoutesRequest"},
2648
2666
  "output":{"shape":"ExportTransitGatewayRoutesResult"}
2649
2667
  },
2668
+ "GetAssociatedEnclaveCertificateIamRoles":{
2669
+ "name":"GetAssociatedEnclaveCertificateIamRoles",
2670
+ "http":{
2671
+ "method":"POST",
2672
+ "requestUri":"/"
2673
+ },
2674
+ "input":{"shape":"GetAssociatedEnclaveCertificateIamRolesRequest"},
2675
+ "output":{"shape":"GetAssociatedEnclaveCertificateIamRolesResult"}
2676
+ },
2650
2677
  "GetAssociatedIpv6PoolCidrs":{
2651
2678
  "name":"GetAssociatedIpv6PoolCidrs",
2652
2679
  "http":{
@@ -4182,6 +4209,13 @@
4182
4209
  "off"
4183
4210
  ]
4184
4211
  },
4212
+ "ApplianceModeSupportValue":{
4213
+ "type":"string",
4214
+ "enum":[
4215
+ "enable",
4216
+ "disable"
4217
+ ]
4218
+ },
4185
4219
  "ApplySecurityGroupsToClientVpnTargetNetworkRequest":{
4186
4220
  "type":"structure",
4187
4221
  "required":[
@@ -4390,6 +4424,31 @@
4390
4424
  }
4391
4425
  }
4392
4426
  },
4427
+ "AssociateEnclaveCertificateIamRoleRequest":{
4428
+ "type":"structure",
4429
+ "members":{
4430
+ "CertificateArn":{"shape":"ResourceArn"},
4431
+ "RoleArn":{"shape":"ResourceArn"},
4432
+ "DryRun":{"shape":"Boolean"}
4433
+ }
4434
+ },
4435
+ "AssociateEnclaveCertificateIamRoleResult":{
4436
+ "type":"structure",
4437
+ "members":{
4438
+ "CertificateS3BucketName":{
4439
+ "shape":"String",
4440
+ "locationName":"certificateS3BucketName"
4441
+ },
4442
+ "CertificateS3ObjectKey":{
4443
+ "shape":"String",
4444
+ "locationName":"certificateS3ObjectKey"
4445
+ },
4446
+ "EncryptionKmsKeyId":{
4447
+ "shape":"String",
4448
+ "locationName":"encryptionKmsKeyId"
4449
+ }
4450
+ }
4451
+ },
4393
4452
  "AssociateIamInstanceProfileRequest":{
4394
4453
  "type":"structure",
4395
4454
  "required":[
@@ -4550,6 +4609,34 @@
4550
4609
  "type":"string",
4551
4610
  "enum":["vpc"]
4552
4611
  },
4612
+ "AssociatedRole":{
4613
+ "type":"structure",
4614
+ "members":{
4615
+ "AssociatedRoleArn":{
4616
+ "shape":"ResourceArn",
4617
+ "locationName":"associatedRoleArn"
4618
+ },
4619
+ "CertificateS3BucketName":{
4620
+ "shape":"String",
4621
+ "locationName":"certificateS3BucketName"
4622
+ },
4623
+ "CertificateS3ObjectKey":{
4624
+ "shape":"String",
4625
+ "locationName":"certificateS3ObjectKey"
4626
+ },
4627
+ "EncryptionKmsKeyId":{
4628
+ "shape":"String",
4629
+ "locationName":"encryptionKmsKeyId"
4630
+ }
4631
+ }
4632
+ },
4633
+ "AssociatedRolesList":{
4634
+ "type":"list",
4635
+ "member":{
4636
+ "shape":"AssociatedRole",
4637
+ "locationName":"item"
4638
+ }
4639
+ },
4553
4640
  "AssociatedTargetNetwork":{
4554
4641
  "type":"structure",
4555
4642
  "members":{
@@ -4679,7 +4766,8 @@
4679
4766
  "NetworkInterfaceId":{
4680
4767
  "shape":"NetworkInterfaceId",
4681
4768
  "locationName":"networkInterfaceId"
4682
- }
4769
+ },
4770
+ "NetworkCardIndex":{"shape":"Integer"}
4683
4771
  }
4684
4772
  },
4685
4773
  "AttachNetworkInterfaceResult":{
@@ -4688,6 +4776,10 @@
4688
4776
  "AttachmentId":{
4689
4777
  "shape":"String",
4690
4778
  "locationName":"attachmentId"
4779
+ },
4780
+ "NetworkCardIndex":{
4781
+ "shape":"Integer",
4782
+ "locationName":"networkCardIndex"
4691
4783
  }
4692
4784
  }
4693
4785
  },
@@ -6130,6 +6222,10 @@
6130
6222
  "VpcId":{
6131
6223
  "shape":"VpcId",
6132
6224
  "locationName":"vpcId"
6225
+ },
6226
+ "SelfServicePortalUrl":{
6227
+ "shape":"String",
6228
+ "locationName":"selfServicePortalUrl"
6133
6229
  }
6134
6230
  }
6135
6231
  },
@@ -6695,7 +6791,8 @@
6695
6791
  "shape":"ClientVpnSecurityGroupIdSet",
6696
6792
  "locationName":"SecurityGroupId"
6697
6793
  },
6698
- "VpcId":{"shape":"VpcId"}
6794
+ "VpcId":{"shape":"VpcId"},
6795
+ "SelfServicePortal":{"shape":"SelfServicePortal"}
6699
6796
  }
6700
6797
  },
6701
6798
  "CreateClientVpnEndpointResult":{
@@ -8085,7 +8182,8 @@
8085
8182
  "type":"structure",
8086
8183
  "members":{
8087
8184
  "DnsSupport":{"shape":"DnsSupportValue"},
8088
- "Ipv6Support":{"shape":"Ipv6SupportValue"}
8185
+ "Ipv6Support":{"shape":"Ipv6SupportValue"},
8186
+ "ApplianceModeSupport":{"shape":"ApplianceModeSupportValue"}
8089
8187
  }
8090
8188
  },
8091
8189
  "CreateTransitGatewayVpcAttachmentResult":{
@@ -13720,6 +13818,23 @@
13720
13818
  }
13721
13819
  }
13722
13820
  },
13821
+ "DisassociateEnclaveCertificateIamRoleRequest":{
13822
+ "type":"structure",
13823
+ "members":{
13824
+ "CertificateArn":{"shape":"ResourceArn"},
13825
+ "RoleArn":{"shape":"ResourceArn"},
13826
+ "DryRun":{"shape":"Boolean"}
13827
+ }
13828
+ },
13829
+ "DisassociateEnclaveCertificateIamRoleResult":{
13830
+ "type":"structure",
13831
+ "members":{
13832
+ "Return":{
13833
+ "shape":"Boolean",
13834
+ "locationName":"return"
13835
+ }
13836
+ }
13837
+ },
13723
13838
  "DisassociateIamInstanceProfileRequest":{
13724
13839
  "type":"structure",
13725
13840
  "required":["AssociationId"],
@@ -14597,6 +14712,21 @@
14597
14712
  }
14598
14713
  }
14599
14714
  },
14715
+ "EnclaveOptions":{
14716
+ "type":"structure",
14717
+ "members":{
14718
+ "Enabled":{
14719
+ "shape":"Boolean",
14720
+ "locationName":"enabled"
14721
+ }
14722
+ }
14723
+ },
14724
+ "EnclaveOptionsRequest":{
14725
+ "type":"structure",
14726
+ "members":{
14727
+ "Enabled":{"shape":"Boolean"}
14728
+ }
14729
+ },
14600
14730
  "EndDateType":{
14601
14731
  "type":"string",
14602
14732
  "enum":[
@@ -15025,13 +15155,18 @@
15025
15155
  "SamlProviderArn":{
15026
15156
  "shape":"String",
15027
15157
  "locationName":"samlProviderArn"
15158
+ },
15159
+ "SelfServiceSamlProviderArn":{
15160
+ "shape":"String",
15161
+ "locationName":"selfServiceSamlProviderArn"
15028
15162
  }
15029
15163
  }
15030
15164
  },
15031
15165
  "FederatedAuthenticationRequest":{
15032
15166
  "type":"structure",
15033
15167
  "members":{
15034
- "SAMLProviderArn":{"shape":"String"}
15168
+ "SAMLProviderArn":{"shape":"String"},
15169
+ "SelfServiceSAMLProviderArn":{"shape":"String"}
15035
15170
  }
15036
15171
  },
15037
15172
  "Filter":{
@@ -15610,6 +15745,22 @@
15610
15745
  "type":"string",
15611
15746
  "enum":["ipsec.1"]
15612
15747
  },
15748
+ "GetAssociatedEnclaveCertificateIamRolesRequest":{
15749
+ "type":"structure",
15750
+ "members":{
15751
+ "CertificateArn":{"shape":"ResourceArn"},
15752
+ "DryRun":{"shape":"Boolean"}
15753
+ }
15754
+ },
15755
+ "GetAssociatedEnclaveCertificateIamRolesResult":{
15756
+ "type":"structure",
15757
+ "members":{
15758
+ "AssociatedRoles":{
15759
+ "shape":"AssociatedRolesList",
15760
+ "locationName":"associatedRoleSet"
15761
+ }
15762
+ }
15763
+ },
15613
15764
  "GetAssociatedIpv6PoolCidrsRequest":{
15614
15765
  "type":"structure",
15615
15766
  "required":["PoolId"],
@@ -17715,6 +17866,10 @@
17715
17866
  "MetadataOptions":{
17716
17867
  "shape":"InstanceMetadataOptionsResponse",
17717
17868
  "locationName":"metadataOptions"
17869
+ },
17870
+ "EnclaveOptions":{
17871
+ "shape":"EnclaveOptions",
17872
+ "locationName":"enclaveOptions"
17718
17873
  }
17719
17874
  }
17720
17875
  },
@@ -17737,6 +17892,10 @@
17737
17892
  "shape":"AttributeBooleanValue",
17738
17893
  "locationName":"enaSupport"
17739
17894
  },
17895
+ "EnclaveOptions":{
17896
+ "shape":"EnclaveOptions",
17897
+ "locationName":"enclaveOptions"
17898
+ },
17740
17899
  "EbsOptimized":{
17741
17900
  "shape":"AttributeBooleanValue",
17742
17901
  "locationName":"ebsOptimized"
@@ -17799,7 +17958,8 @@
17799
17958
  "groupSet",
17800
17959
  "ebsOptimized",
17801
17960
  "sriovNetSupport",
17802
- "enaSupport"
17961
+ "enaSupport",
17962
+ "enclaveOptions"
17803
17963
  ]
17804
17964
  },
17805
17965
  "InstanceBlockDeviceMapping":{
@@ -18224,6 +18384,10 @@
18224
18384
  "Status":{
18225
18385
  "shape":"AttachmentStatus",
18226
18386
  "locationName":"status"
18387
+ },
18388
+ "NetworkCardIndex":{
18389
+ "shape":"Integer",
18390
+ "locationName":"networkCardIndex"
18227
18391
  }
18228
18392
  }
18229
18393
  },
@@ -18288,7 +18452,8 @@
18288
18452
  "locationName":"subnetId"
18289
18453
  },
18290
18454
  "AssociateCarrierIpAddress":{"shape":"Boolean"},
18291
- "InterfaceType":{"shape":"String"}
18455
+ "InterfaceType":{"shape":"String"},
18456
+ "NetworkCardIndex":{"shape":"Integer"}
18292
18457
  }
18293
18458
  },
18294
18459
  "InstanceNetworkInterfaceSpecificationList":{
@@ -18767,6 +18932,7 @@
18767
18932
  "p3.8xlarge",
18768
18933
  "p3.16xlarge",
18769
18934
  "p3dn.24xlarge",
18935
+ "p4d.24xlarge",
18770
18936
  "d2.xlarge",
18771
18937
  "d2.2xlarge",
18772
18938
  "d2.4xlarge",
@@ -19707,6 +19873,21 @@
19707
19873
  "locationName":"item"
19708
19874
  }
19709
19875
  },
19876
+ "LaunchTemplateEnclaveOptions":{
19877
+ "type":"structure",
19878
+ "members":{
19879
+ "Enabled":{
19880
+ "shape":"Boolean",
19881
+ "locationName":"enabled"
19882
+ }
19883
+ }
19884
+ },
19885
+ "LaunchTemplateEnclaveOptionsRequest":{
19886
+ "type":"structure",
19887
+ "members":{
19888
+ "Enabled":{"shape":"Boolean"}
19889
+ }
19890
+ },
19710
19891
  "LaunchTemplateErrorCode":{
19711
19892
  "type":"string",
19712
19893
  "enum":[
@@ -19889,6 +20070,10 @@
19889
20070
  "SubnetId":{
19890
20071
  "shape":"SubnetId",
19891
20072
  "locationName":"subnetId"
20073
+ },
20074
+ "NetworkCardIndex":{
20075
+ "shape":"Integer",
20076
+ "locationName":"networkCardIndex"
19892
20077
  }
19893
20078
  }
19894
20079
  },
@@ -19918,7 +20103,8 @@
19918
20103
  "PrivateIpAddress":{"shape":"String"},
19919
20104
  "PrivateIpAddresses":{"shape":"PrivateIpAddressSpecificationList"},
19920
20105
  "SecondaryPrivateIpAddressCount":{"shape":"Integer"},
19921
- "SubnetId":{"shape":"SubnetId"}
20106
+ "SubnetId":{"shape":"SubnetId"},
20107
+ "NetworkCardIndex":{"shape":"Integer"}
19922
20108
  }
19923
20109
  },
19924
20110
  "LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList":{
@@ -20815,7 +21001,8 @@
20815
21001
  "shape":"ClientVpnSecurityGroupIdSet",
20816
21002
  "locationName":"SecurityGroupId"
20817
21003
  },
20818
- "VpcId":{"shape":"VpcId"}
21004
+ "VpcId":{"shape":"VpcId"},
21005
+ "SelfServicePortal":{"shape":"SelfServicePortal"}
20819
21006
  }
20820
21007
  },
20821
21008
  "ModifyClientVpnEndpointResult":{
@@ -21538,7 +21725,8 @@
21538
21725
  "type":"structure",
21539
21726
  "members":{
21540
21727
  "DnsSupport":{"shape":"DnsSupportValue"},
21541
- "Ipv6Support":{"shape":"Ipv6SupportValue"}
21728
+ "Ipv6Support":{"shape":"Ipv6SupportValue"},
21729
+ "ApplianceModeSupport":{"shape":"ApplianceModeSupportValue"}
21542
21730
  }
21543
21731
  },
21544
21732
  "ModifyTransitGatewayVpcAttachmentResult":{
@@ -22372,6 +22560,10 @@
22372
22560
  "shape":"Integer",
22373
22561
  "locationName":"deviceIndex"
22374
22562
  },
22563
+ "NetworkCardIndex":{
22564
+ "shape":"Integer",
22565
+ "locationName":"networkCardIndex"
22566
+ },
22375
22567
  "InstanceId":{
22376
22568
  "shape":"String",
22377
22569
  "locationName":"instanceId"
@@ -24420,7 +24612,8 @@
24420
24612
  "locationName":"LicenseSpecification"
24421
24613
  },
24422
24614
  "HibernationOptions":{"shape":"LaunchTemplateHibernationOptionsRequest"},
24423
- "MetadataOptions":{"shape":"LaunchTemplateInstanceMetadataOptionsRequest"}
24615
+ "MetadataOptions":{"shape":"LaunchTemplateInstanceMetadataOptionsRequest"},
24616
+ "EnclaveOptions":{"shape":"LaunchTemplateEnclaveOptionsRequest"}
24424
24617
  }
24425
24618
  },
24426
24619
  "RequestSpotFleetRequest":{
@@ -25352,6 +25545,10 @@
25352
25545
  "MetadataOptions":{
25353
25546
  "shape":"LaunchTemplateInstanceMetadataOptions",
25354
25547
  "locationName":"metadataOptions"
25548
+ },
25549
+ "EnclaveOptions":{
25550
+ "shape":"LaunchTemplateEnclaveOptions",
25551
+ "locationName":"enclaveOptions"
25355
25552
  }
25356
25553
  }
25357
25554
  },
@@ -25836,7 +26033,8 @@
25836
26033
  "shape":"LicenseSpecificationListRequest",
25837
26034
  "locationName":"LicenseSpecification"
25838
26035
  },
25839
- "MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"}
26036
+ "MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"},
26037
+ "EnclaveOptions":{"shape":"EnclaveOptionsRequest"}
25840
26038
  }
25841
26039
  },
25842
26040
  "RunScheduledInstancesRequest":{
@@ -26387,6 +26585,13 @@
26387
26585
  "locationName":"SecurityGroup"
26388
26586
  }
26389
26587
  },
26588
+ "SelfServicePortal":{
26589
+ "type":"string",
26590
+ "enum":[
26591
+ "enabled",
26592
+ "disabled"
26593
+ ]
26594
+ },
26390
26595
  "SendDiagnosticInterruptRequest":{
26391
26596
  "type":"structure",
26392
26597
  "required":["InstanceId"],
@@ -29285,6 +29490,10 @@
29285
29490
  "Ipv6Support":{
29286
29491
  "shape":"Ipv6SupportValue",
29287
29492
  "locationName":"ipv6Support"
29493
+ },
29494
+ "ApplianceModeSupport":{
29495
+ "shape":"ApplianceModeSupportValue",
29496
+ "locationName":"applianceModeSupport"
29288
29497
  }
29289
29498
  }
29290
29499
  },