aws-sdk-core 2.11.613 → 2.11.618

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":{
@@ -6130,6 +6217,10 @@
6130
6217
  "VpcId":{
6131
6218
  "shape":"VpcId",
6132
6219
  "locationName":"vpcId"
6220
+ },
6221
+ "SelfServicePortalUrl":{
6222
+ "shape":"String",
6223
+ "locationName":"selfServicePortalUrl"
6133
6224
  }
6134
6225
  }
6135
6226
  },
@@ -6695,7 +6786,8 @@
6695
6786
  "shape":"ClientVpnSecurityGroupIdSet",
6696
6787
  "locationName":"SecurityGroupId"
6697
6788
  },
6698
- "VpcId":{"shape":"VpcId"}
6789
+ "VpcId":{"shape":"VpcId"},
6790
+ "SelfServicePortal":{"shape":"SelfServicePortal"}
6699
6791
  }
6700
6792
  },
6701
6793
  "CreateClientVpnEndpointResult":{
@@ -8085,7 +8177,8 @@
8085
8177
  "type":"structure",
8086
8178
  "members":{
8087
8179
  "DnsSupport":{"shape":"DnsSupportValue"},
8088
- "Ipv6Support":{"shape":"Ipv6SupportValue"}
8180
+ "Ipv6Support":{"shape":"Ipv6SupportValue"},
8181
+ "ApplianceModeSupport":{"shape":"ApplianceModeSupportValue"}
8089
8182
  }
8090
8183
  },
8091
8184
  "CreateTransitGatewayVpcAttachmentResult":{
@@ -13720,6 +13813,23 @@
13720
13813
  }
13721
13814
  }
13722
13815
  },
13816
+ "DisassociateEnclaveCertificateIamRoleRequest":{
13817
+ "type":"structure",
13818
+ "members":{
13819
+ "CertificateArn":{"shape":"ResourceArn"},
13820
+ "RoleArn":{"shape":"ResourceArn"},
13821
+ "DryRun":{"shape":"Boolean"}
13822
+ }
13823
+ },
13824
+ "DisassociateEnclaveCertificateIamRoleResult":{
13825
+ "type":"structure",
13826
+ "members":{
13827
+ "Return":{
13828
+ "shape":"Boolean",
13829
+ "locationName":"return"
13830
+ }
13831
+ }
13832
+ },
13723
13833
  "DisassociateIamInstanceProfileRequest":{
13724
13834
  "type":"structure",
13725
13835
  "required":["AssociationId"],
@@ -14597,6 +14707,21 @@
14597
14707
  }
14598
14708
  }
14599
14709
  },
14710
+ "EnclaveOptions":{
14711
+ "type":"structure",
14712
+ "members":{
14713
+ "Enabled":{
14714
+ "shape":"Boolean",
14715
+ "locationName":"enabled"
14716
+ }
14717
+ }
14718
+ },
14719
+ "EnclaveOptionsRequest":{
14720
+ "type":"structure",
14721
+ "members":{
14722
+ "Enabled":{"shape":"Boolean"}
14723
+ }
14724
+ },
14600
14725
  "EndDateType":{
14601
14726
  "type":"string",
14602
14727
  "enum":[
@@ -15025,13 +15150,18 @@
15025
15150
  "SamlProviderArn":{
15026
15151
  "shape":"String",
15027
15152
  "locationName":"samlProviderArn"
15153
+ },
15154
+ "SelfServiceSamlProviderArn":{
15155
+ "shape":"String",
15156
+ "locationName":"selfServiceSamlProviderArn"
15028
15157
  }
15029
15158
  }
15030
15159
  },
15031
15160
  "FederatedAuthenticationRequest":{
15032
15161
  "type":"structure",
15033
15162
  "members":{
15034
- "SAMLProviderArn":{"shape":"String"}
15163
+ "SAMLProviderArn":{"shape":"String"},
15164
+ "SelfServiceSAMLProviderArn":{"shape":"String"}
15035
15165
  }
15036
15166
  },
15037
15167
  "Filter":{
@@ -15610,6 +15740,22 @@
15610
15740
  "type":"string",
15611
15741
  "enum":["ipsec.1"]
15612
15742
  },
15743
+ "GetAssociatedEnclaveCertificateIamRolesRequest":{
15744
+ "type":"structure",
15745
+ "members":{
15746
+ "CertificateArn":{"shape":"ResourceArn"},
15747
+ "DryRun":{"shape":"Boolean"}
15748
+ }
15749
+ },
15750
+ "GetAssociatedEnclaveCertificateIamRolesResult":{
15751
+ "type":"structure",
15752
+ "members":{
15753
+ "AssociatedRoles":{
15754
+ "shape":"AssociatedRolesList",
15755
+ "locationName":"associatedRoleSet"
15756
+ }
15757
+ }
15758
+ },
15613
15759
  "GetAssociatedIpv6PoolCidrsRequest":{
15614
15760
  "type":"structure",
15615
15761
  "required":["PoolId"],
@@ -17715,6 +17861,10 @@
17715
17861
  "MetadataOptions":{
17716
17862
  "shape":"InstanceMetadataOptionsResponse",
17717
17863
  "locationName":"metadataOptions"
17864
+ },
17865
+ "EnclaveOptions":{
17866
+ "shape":"EnclaveOptions",
17867
+ "locationName":"enclaveOptions"
17718
17868
  }
17719
17869
  }
17720
17870
  },
@@ -17737,6 +17887,10 @@
17737
17887
  "shape":"AttributeBooleanValue",
17738
17888
  "locationName":"enaSupport"
17739
17889
  },
17890
+ "EnclaveOptions":{
17891
+ "shape":"EnclaveOptions",
17892
+ "locationName":"enclaveOptions"
17893
+ },
17740
17894
  "EbsOptimized":{
17741
17895
  "shape":"AttributeBooleanValue",
17742
17896
  "locationName":"ebsOptimized"
@@ -17799,7 +17953,8 @@
17799
17953
  "groupSet",
17800
17954
  "ebsOptimized",
17801
17955
  "sriovNetSupport",
17802
- "enaSupport"
17956
+ "enaSupport",
17957
+ "enclaveOptions"
17803
17958
  ]
17804
17959
  },
17805
17960
  "InstanceBlockDeviceMapping":{
@@ -19707,6 +19862,21 @@
19707
19862
  "locationName":"item"
19708
19863
  }
19709
19864
  },
19865
+ "LaunchTemplateEnclaveOptions":{
19866
+ "type":"structure",
19867
+ "members":{
19868
+ "Enabled":{
19869
+ "shape":"Boolean",
19870
+ "locationName":"enabled"
19871
+ }
19872
+ }
19873
+ },
19874
+ "LaunchTemplateEnclaveOptionsRequest":{
19875
+ "type":"structure",
19876
+ "members":{
19877
+ "Enabled":{"shape":"Boolean"}
19878
+ }
19879
+ },
19710
19880
  "LaunchTemplateErrorCode":{
19711
19881
  "type":"string",
19712
19882
  "enum":[
@@ -20815,7 +20985,8 @@
20815
20985
  "shape":"ClientVpnSecurityGroupIdSet",
20816
20986
  "locationName":"SecurityGroupId"
20817
20987
  },
20818
- "VpcId":{"shape":"VpcId"}
20988
+ "VpcId":{"shape":"VpcId"},
20989
+ "SelfServicePortal":{"shape":"SelfServicePortal"}
20819
20990
  }
20820
20991
  },
20821
20992
  "ModifyClientVpnEndpointResult":{
@@ -21538,7 +21709,8 @@
21538
21709
  "type":"structure",
21539
21710
  "members":{
21540
21711
  "DnsSupport":{"shape":"DnsSupportValue"},
21541
- "Ipv6Support":{"shape":"Ipv6SupportValue"}
21712
+ "Ipv6Support":{"shape":"Ipv6SupportValue"},
21713
+ "ApplianceModeSupport":{"shape":"ApplianceModeSupportValue"}
21542
21714
  }
21543
21715
  },
21544
21716
  "ModifyTransitGatewayVpcAttachmentResult":{
@@ -24420,7 +24592,8 @@
24420
24592
  "locationName":"LicenseSpecification"
24421
24593
  },
24422
24594
  "HibernationOptions":{"shape":"LaunchTemplateHibernationOptionsRequest"},
24423
- "MetadataOptions":{"shape":"LaunchTemplateInstanceMetadataOptionsRequest"}
24595
+ "MetadataOptions":{"shape":"LaunchTemplateInstanceMetadataOptionsRequest"},
24596
+ "EnclaveOptions":{"shape":"LaunchTemplateEnclaveOptionsRequest"}
24424
24597
  }
24425
24598
  },
24426
24599
  "RequestSpotFleetRequest":{
@@ -25352,6 +25525,10 @@
25352
25525
  "MetadataOptions":{
25353
25526
  "shape":"LaunchTemplateInstanceMetadataOptions",
25354
25527
  "locationName":"metadataOptions"
25528
+ },
25529
+ "EnclaveOptions":{
25530
+ "shape":"LaunchTemplateEnclaveOptions",
25531
+ "locationName":"enclaveOptions"
25355
25532
  }
25356
25533
  }
25357
25534
  },
@@ -25836,7 +26013,8 @@
25836
26013
  "shape":"LicenseSpecificationListRequest",
25837
26014
  "locationName":"LicenseSpecification"
25838
26015
  },
25839
- "MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"}
26016
+ "MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"},
26017
+ "EnclaveOptions":{"shape":"EnclaveOptionsRequest"}
25840
26018
  }
25841
26019
  },
25842
26020
  "RunScheduledInstancesRequest":{
@@ -26387,6 +26565,13 @@
26387
26565
  "locationName":"SecurityGroup"
26388
26566
  }
26389
26567
  },
26568
+ "SelfServicePortal":{
26569
+ "type":"string",
26570
+ "enum":[
26571
+ "enabled",
26572
+ "disabled"
26573
+ ]
26574
+ },
26390
26575
  "SendDiagnosticInterruptRequest":{
26391
26576
  "type":"structure",
26392
26577
  "required":["InstanceId"],
@@ -29285,6 +29470,10 @@
29285
29470
  "Ipv6Support":{
29286
29471
  "shape":"Ipv6SupportValue",
29287
29472
  "locationName":"ipv6Support"
29473
+ },
29474
+ "ApplianceModeSupport":{
29475
+ "shape":"ApplianceModeSupportValue",
29476
+ "locationName":"applianceModeSupport"
29288
29477
  }
29289
29478
  }
29290
29479
  },
@@ -955,6 +955,7 @@
955
955
  "members":{
956
956
  "Name":{"shape":"TargetGroupName"},
957
957
  "Protocol":{"shape":"ProtocolEnum"},
958
+ "ProtocolVersion":{"shape":"ProtocolVersion"},
958
959
  "Port":{"shape":"Port"},
959
960
  "VpcId":{"shape":"VpcId"},
960
961
  "HealthCheckProtocol":{"shape":"ProtocolEnum"},
@@ -1286,6 +1287,7 @@
1286
1287
  "TargetGroupStickinessConfig":{"shape":"TargetGroupStickinessConfig"}
1287
1288
  }
1288
1289
  },
1290
+ "GrpcCode":{"type":"string"},
1289
1291
  "HealthCheckEnabled":{"type":"boolean"},
1290
1292
  "HealthCheckIntervalSeconds":{
1291
1293
  "type":"integer",
@@ -1577,9 +1579,9 @@
1577
1579
  "Marker":{"type":"string"},
1578
1580
  "Matcher":{
1579
1581
  "type":"structure",
1580
- "required":["HttpCode"],
1581
1582
  "members":{
1582
- "HttpCode":{"shape":"HttpCode"}
1583
+ "HttpCode":{"shape":"HttpCode"},
1584
+ "GrpcCode":{"shape":"GrpcCode"}
1583
1585
  }
1584
1586
  },
1585
1587
  "Max":{"type":"string"},
@@ -1730,6 +1732,7 @@
1730
1732
  "TCP_UDP"
1731
1733
  ]
1732
1734
  },
1735
+ "ProtocolVersion":{"type":"string"},
1733
1736
  "QueryStringConditionConfig":{
1734
1737
  "type":"structure",
1735
1738
  "members":{
@@ -2121,7 +2124,8 @@
2121
2124
  "HealthCheckPath":{"shape":"Path"},
2122
2125
  "Matcher":{"shape":"Matcher"},
2123
2126
  "LoadBalancerArns":{"shape":"LoadBalancerArns"},
2124
- "TargetType":{"shape":"TargetTypeEnum"}
2127
+ "TargetType":{"shape":"TargetTypeEnum"},
2128
+ "ProtocolVersion":{"shape":"ProtocolVersion"}
2125
2129
  }
2126
2130
  },
2127
2131
  "TargetGroupArn":{"type":"string"},