aws-sdk-core 2.11.601 → 2.11.606
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/accessanalyzer/2019-11-01/api-2.json +42 -8
- data/apis/amplify/2017-07-25/api-2.json +5 -0
- data/apis/budgets/2016-10-20/api-2.json +614 -0
- data/apis/budgets/2016-10-20/paginators-1.json +18 -0
- data/apis/ce/2017-10-25/api-2.json +45 -5
- data/apis/compute-optimizer/2019-11-01/api-2.json +13 -1
- data/apis/dms/2016-01-01/api-2.json +98 -6
- data/apis/ec2/2016-11-15/api-2.json +38 -2
- data/apis/eks/2017-11-01/api-2.json +4 -2
- data/apis/elasticache/2015-02-02/api-2.json +584 -13
- data/apis/elasticache/2015-02-02/paginators-1.json +12 -0
- data/apis/eventbridge/2015-10-07/api-2.json +31 -1
- data/apis/events/2015-10-07/api-2.json +31 -1
- data/apis/groundstation/2019-05-23/api-2.json +2 -0
- data/apis/iot/2015-05-28/api-2.json +18 -5
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +6 -3
- data/apis/macie2/2020-01-01/api-2.json +160 -1
- data/apis/marketplace-catalog/2018-09-17/api-2.json +10 -1
- data/apis/medialive/2017-10-14/api-2.json +296 -6
- data/apis/mediapackage/2017-10-12/api-2.json +167 -0
- data/apis/rds/2014-10-31/api-2.json +11 -5
- data/apis/rekognition/2016-06-27/api-2.json +144 -4
- data/apis/sagemaker/2017-07-24/api-2.json +2 -1
- data/apis/servicecatalog/2015-12-10/api-2.json +36 -0
- data/apis/servicecatalog/2015-12-10/paginators-1.json +5 -0
- data/apis/snowball/2016-06-30/api-2.json +117 -0
- data/apis/ssm/2014-11-06/api-2.json +43 -2
- data/apis/transfer/2018-11-05/api-2.json +12 -1
- data/apis/workmail/2017-10-01/api-2.json +124 -5
- data/apis/xray/2016-04-12/api-2.json +3 -1
- data/apis/xray/2016-04-12/paginators-1.json +0 -15
- data/endpoints.json +10 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
@@ -1,5 +1,23 @@
|
|
1
1
|
{
|
2
2
|
"pagination": {
|
3
|
+
"DescribeBudgetActionHistories": {
|
4
|
+
"input_token": "NextToken",
|
5
|
+
"limit_key": "MaxResults",
|
6
|
+
"output_token": "NextToken",
|
7
|
+
"result_key": "ActionHistories"
|
8
|
+
},
|
9
|
+
"DescribeBudgetActionsForAccount": {
|
10
|
+
"input_token": "NextToken",
|
11
|
+
"limit_key": "MaxResults",
|
12
|
+
"output_token": "NextToken",
|
13
|
+
"result_key": "Actions"
|
14
|
+
},
|
15
|
+
"DescribeBudgetActionsForBudget": {
|
16
|
+
"input_token": "NextToken",
|
17
|
+
"limit_key": "MaxResults",
|
18
|
+
"output_token": "NextToken",
|
19
|
+
"result_key": "Actions"
|
20
|
+
},
|
3
21
|
"DescribeBudgetPerformanceHistory": {
|
4
22
|
"input_token": "NextToken",
|
5
23
|
"limit_key": "MaxResults",
|
@@ -568,7 +568,8 @@
|
|
568
568
|
"EffectiveEnd":{"shape":"ZonedDateTime"},
|
569
569
|
"Name":{"shape":"CostCategoryName"},
|
570
570
|
"RuleVersion":{"shape":"CostCategoryRuleVersion"},
|
571
|
-
"Rules":{"shape":"CostCategoryRulesList"}
|
571
|
+
"Rules":{"shape":"CostCategoryRulesList"},
|
572
|
+
"ProcessingStatus":{"shape":"CostCategoryProcessingStatusList"}
|
572
573
|
}
|
573
574
|
},
|
574
575
|
"CostCategoryMaxResults":{
|
@@ -582,6 +583,17 @@
|
|
582
583
|
"min":1,
|
583
584
|
"pattern":"^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(?<! )$"
|
584
585
|
},
|
586
|
+
"CostCategoryProcessingStatus":{
|
587
|
+
"type":"structure",
|
588
|
+
"members":{
|
589
|
+
"Component":{"shape":"CostCategoryStatusComponent"},
|
590
|
+
"Status":{"shape":"CostCategoryStatus"}
|
591
|
+
}
|
592
|
+
},
|
593
|
+
"CostCategoryProcessingStatusList":{
|
594
|
+
"type":"list",
|
595
|
+
"member":{"shape":"CostCategoryProcessingStatus"}
|
596
|
+
},
|
585
597
|
"CostCategoryReference":{
|
586
598
|
"type":"structure",
|
587
599
|
"members":{
|
@@ -589,7 +601,9 @@
|
|
589
601
|
"Name":{"shape":"CostCategoryName"},
|
590
602
|
"EffectiveStart":{"shape":"ZonedDateTime"},
|
591
603
|
"EffectiveEnd":{"shape":"ZonedDateTime"},
|
592
|
-
"NumberOfRules":{"shape":"NonNegativeInteger"}
|
604
|
+
"NumberOfRules":{"shape":"NonNegativeInteger"},
|
605
|
+
"ProcessingStatus":{"shape":"CostCategoryProcessingStatusList"},
|
606
|
+
"Values":{"shape":"CostCategoryValuesList"}
|
593
607
|
}
|
594
608
|
},
|
595
609
|
"CostCategoryReferencesList":{
|
@@ -617,6 +631,17 @@
|
|
617
631
|
"max":500,
|
618
632
|
"min":1
|
619
633
|
},
|
634
|
+
"CostCategoryStatus":{
|
635
|
+
"type":"string",
|
636
|
+
"enum":[
|
637
|
+
"PROCESSING",
|
638
|
+
"APPLIED"
|
639
|
+
]
|
640
|
+
},
|
641
|
+
"CostCategoryStatusComponent":{
|
642
|
+
"type":"string",
|
643
|
+
"enum":["COST_EXPLORER"]
|
644
|
+
},
|
620
645
|
"CostCategoryValue":{
|
621
646
|
"type":"string",
|
622
647
|
"max":255,
|
@@ -627,9 +652,14 @@
|
|
627
652
|
"type":"structure",
|
628
653
|
"members":{
|
629
654
|
"Key":{"shape":"CostCategoryName"},
|
630
|
-
"Values":{"shape":"Values"}
|
655
|
+
"Values":{"shape":"Values"},
|
656
|
+
"MatchOptions":{"shape":"MatchOptions"}
|
631
657
|
}
|
632
658
|
},
|
659
|
+
"CostCategoryValuesList":{
|
660
|
+
"type":"list",
|
661
|
+
"member":{"shape":"CostCategoryValue"}
|
662
|
+
},
|
633
663
|
"Coverage":{
|
634
664
|
"type":"structure",
|
635
665
|
"members":{
|
@@ -863,6 +893,15 @@
|
|
863
893
|
"type":"list",
|
864
894
|
"member":{"shape":"DimensionValuesWithAttributes"}
|
865
895
|
},
|
896
|
+
"EBSResourceUtilization":{
|
897
|
+
"type":"structure",
|
898
|
+
"members":{
|
899
|
+
"EbsReadOpsPerSecond":{"shape":"GenericString"},
|
900
|
+
"EbsWriteOpsPerSecond":{"shape":"GenericString"},
|
901
|
+
"EbsReadBytesPerSecond":{"shape":"GenericString"},
|
902
|
+
"EbsWriteBytesPerSecond":{"shape":"GenericString"}
|
903
|
+
}
|
904
|
+
},
|
866
905
|
"EC2InstanceDetails":{
|
867
906
|
"type":"structure",
|
868
907
|
"members":{
|
@@ -895,7 +934,8 @@
|
|
895
934
|
"members":{
|
896
935
|
"MaxCpuUtilizationPercentage":{"shape":"GenericString"},
|
897
936
|
"MaxMemoryUtilizationPercentage":{"shape":"GenericString"},
|
898
|
-
"MaxStorageUtilizationPercentage":{"shape":"GenericString"}
|
937
|
+
"MaxStorageUtilizationPercentage":{"shape":"GenericString"},
|
938
|
+
"EBSResourceUtilization":{"shape":"EBSResourceUtilization"}
|
899
939
|
}
|
900
940
|
},
|
901
941
|
"EC2Specification":{
|
@@ -2014,7 +2054,7 @@
|
|
2014
2054
|
"type":"string",
|
2015
2055
|
"max":302,
|
2016
2056
|
"min":6,
|
2017
|
-
"pattern":"(^[a-zA-Z0-
|
2057
|
+
"pattern":"(^[a-zA-Z0-9.!#$%&'*+=?^_‘{|}~-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$)|(^arn:(aws[a-zA-Z-]*):sns:[a-zA-Z0-9-]+:[0-9]{12}:[a-zA-Z0-9_-]+$)"
|
2018
2058
|
},
|
2019
2059
|
"SubscriberStatus":{
|
2020
2060
|
"type":"string",
|
@@ -317,6 +317,10 @@
|
|
317
317
|
"Finding",
|
318
318
|
"UtilizationMetricsCpuMaximum",
|
319
319
|
"UtilizationMetricsMemoryMaximum",
|
320
|
+
"UtilizationMetricsEbsReadOpsPerSecondMaximum",
|
321
|
+
"UtilizationMetricsEbsWriteOpsPerSecondMaximum",
|
322
|
+
"UtilizationMetricsEbsReadBytesPerSecondMaximum",
|
323
|
+
"UtilizationMetricsEbsWriteBytesPerSecondMaximum",
|
320
324
|
"LookbackPeriodInDays",
|
321
325
|
"CurrentConfigurationInstanceType",
|
322
326
|
"CurrentConfigurationDesiredCapacity",
|
@@ -361,6 +365,10 @@
|
|
361
365
|
"CurrentInstanceType",
|
362
366
|
"UtilizationMetricsCpuMaximum",
|
363
367
|
"UtilizationMetricsMemoryMaximum",
|
368
|
+
"UtilizationMetricsEbsReadOpsPerSecondMaximum",
|
369
|
+
"UtilizationMetricsEbsWriteOpsPerSecondMaximum",
|
370
|
+
"UtilizationMetricsEbsReadBytesPerSecondMaximum",
|
371
|
+
"UtilizationMetricsEbsWriteBytesPerSecondMaximum",
|
364
372
|
"CurrentOnDemandPrice",
|
365
373
|
"CurrentStandardOneYearNoUpfrontReservedPrice",
|
366
374
|
"CurrentStandardThreeYearNoUpfrontReservedPrice",
|
@@ -632,7 +640,11 @@
|
|
632
640
|
"type":"string",
|
633
641
|
"enum":[
|
634
642
|
"Cpu",
|
635
|
-
"Memory"
|
643
|
+
"Memory",
|
644
|
+
"EBS_READ_OPS_PER_SECOND",
|
645
|
+
"EBS_WRITE_OPS_PER_SECOND",
|
646
|
+
"EBS_READ_BYTES_PER_SECOND",
|
647
|
+
"EBS_WRITE_BYTES_PER_SECOND"
|
636
648
|
]
|
637
649
|
},
|
638
650
|
"MetricStatistic":{
|
@@ -851,6 +851,14 @@
|
|
851
851
|
"member":{"shape":"Certificate"}
|
852
852
|
},
|
853
853
|
"CertificateWallet":{"type":"blob"},
|
854
|
+
"CharLengthSemantics":{
|
855
|
+
"type":"string",
|
856
|
+
"enum":[
|
857
|
+
"default",
|
858
|
+
"char",
|
859
|
+
"byte"
|
860
|
+
]
|
861
|
+
},
|
854
862
|
"CompressionTypeValue":{
|
855
863
|
"type":"string",
|
856
864
|
"enum":[
|
@@ -910,7 +918,8 @@
|
|
910
918
|
"OracleSettings":{"shape":"OracleSettings"},
|
911
919
|
"SybaseSettings":{"shape":"SybaseSettings"},
|
912
920
|
"MicrosoftSQLServerSettings":{"shape":"MicrosoftSQLServerSettings"},
|
913
|
-
"IBMDb2Settings":{"shape":"IBMDb2Settings"}
|
921
|
+
"IBMDb2Settings":{"shape":"IBMDb2Settings"},
|
922
|
+
"ResourceIdentifier":{"shape":"String"}
|
914
923
|
}
|
915
924
|
},
|
916
925
|
"CreateEndpointResponse":{
|
@@ -961,7 +970,8 @@
|
|
961
970
|
"Tags":{"shape":"TagList"},
|
962
971
|
"KmsKeyId":{"shape":"String"},
|
963
972
|
"PubliclyAccessible":{"shape":"BooleanOptional"},
|
964
|
-
"DnsNameServers":{"shape":"String"}
|
973
|
+
"DnsNameServers":{"shape":"String"},
|
974
|
+
"ResourceIdentifier":{"shape":"String"}
|
965
975
|
}
|
966
976
|
},
|
967
977
|
"CreateReplicationInstanceResponse":{
|
@@ -1012,7 +1022,8 @@
|
|
1012
1022
|
"CdcStartPosition":{"shape":"String"},
|
1013
1023
|
"CdcStopPosition":{"shape":"String"},
|
1014
1024
|
"Tags":{"shape":"TagList"},
|
1015
|
-
"TaskData":{"shape":"String"}
|
1025
|
+
"TaskData":{"shape":"String"},
|
1026
|
+
"ResourceIdentifier":{"shape":"String"}
|
1016
1027
|
}
|
1017
1028
|
},
|
1018
1029
|
"CreateReplicationTaskResponse":{
|
@@ -1028,6 +1039,25 @@
|
|
1028
1039
|
"parquet"
|
1029
1040
|
]
|
1030
1041
|
},
|
1042
|
+
"DatePartitionDelimiterValue":{
|
1043
|
+
"type":"string",
|
1044
|
+
"enum":[
|
1045
|
+
"SLASH",
|
1046
|
+
"UNDERSCORE",
|
1047
|
+
"DASH",
|
1048
|
+
"NONE"
|
1049
|
+
]
|
1050
|
+
},
|
1051
|
+
"DatePartitionSequenceValue":{
|
1052
|
+
"type":"string",
|
1053
|
+
"enum":[
|
1054
|
+
"YYYYMMDD",
|
1055
|
+
"YYYYMMDDHH",
|
1056
|
+
"YYYYMM",
|
1057
|
+
"MMYYYYDD",
|
1058
|
+
"DDMMYYYY"
|
1059
|
+
]
|
1060
|
+
},
|
1031
1061
|
"DeleteCertificateMessage":{
|
1032
1062
|
"type":"structure",
|
1033
1063
|
"required":["CertificateArn"],
|
@@ -1632,6 +1662,9 @@
|
|
1632
1662
|
"Password":{"shape":"SecretString"},
|
1633
1663
|
"Port":{"shape":"IntegerOptional"},
|
1634
1664
|
"ServerName":{"shape":"String"},
|
1665
|
+
"SetDataCaptureChanges":{"shape":"BooleanOptional"},
|
1666
|
+
"CurrentLsn":{"shape":"String"},
|
1667
|
+
"MaxKBytesPerRead":{"shape":"IntegerOptional"},
|
1635
1668
|
"Username":{"shape":"String"}
|
1636
1669
|
}
|
1637
1670
|
},
|
@@ -1796,10 +1829,15 @@
|
|
1796
1829
|
"type":"structure",
|
1797
1830
|
"members":{
|
1798
1831
|
"Port":{"shape":"IntegerOptional"},
|
1832
|
+
"BcpPacketSize":{"shape":"IntegerOptional"},
|
1799
1833
|
"DatabaseName":{"shape":"String"},
|
1834
|
+
"ControlTablesFileGroup":{"shape":"String"},
|
1800
1835
|
"Password":{"shape":"SecretString"},
|
1836
|
+
"ReadBackupOnly":{"shape":"BooleanOptional"},
|
1837
|
+
"SafeguardPolicy":{"shape":"SafeguardPolicy"},
|
1801
1838
|
"ServerName":{"shape":"String"},
|
1802
|
-
"Username":{"shape":"String"}
|
1839
|
+
"Username":{"shape":"String"},
|
1840
|
+
"UseBcpFullLoad":{"shape":"BooleanOptional"}
|
1803
1841
|
}
|
1804
1842
|
},
|
1805
1843
|
"MigrationTypeValue":{
|
@@ -1950,10 +1988,16 @@
|
|
1950
1988
|
"MySQLSettings":{
|
1951
1989
|
"type":"structure",
|
1952
1990
|
"members":{
|
1991
|
+
"AfterConnectScript":{"shape":"String"},
|
1953
1992
|
"DatabaseName":{"shape":"String"},
|
1993
|
+
"EventsPollInterval":{"shape":"IntegerOptional"},
|
1994
|
+
"TargetDbType":{"shape":"TargetDbType"},
|
1995
|
+
"MaxFileSize":{"shape":"IntegerOptional"},
|
1996
|
+
"ParallelLoadThreads":{"shape":"IntegerOptional"},
|
1954
1997
|
"Password":{"shape":"SecretString"},
|
1955
1998
|
"Port":{"shape":"IntegerOptional"},
|
1956
1999
|
"ServerName":{"shape":"String"},
|
2000
|
+
"ServerTimezone":{"shape":"String"},
|
1957
2001
|
"Username":{"shape":"String"}
|
1958
2002
|
}
|
1959
2003
|
},
|
@@ -1983,12 +2027,32 @@
|
|
1983
2027
|
"OracleSettings":{
|
1984
2028
|
"type":"structure",
|
1985
2029
|
"members":{
|
2030
|
+
"AddSupplementalLogging":{"shape":"BooleanOptional"},
|
2031
|
+
"ArchivedLogDestId":{"shape":"IntegerOptional"},
|
2032
|
+
"AdditionalArchivedLogDestId":{"shape":"IntegerOptional"},
|
2033
|
+
"AllowSelectNestedTables":{"shape":"BooleanOptional"},
|
2034
|
+
"ParallelAsmReadThreads":{"shape":"IntegerOptional"},
|
2035
|
+
"ReadAheadBlocks":{"shape":"IntegerOptional"},
|
2036
|
+
"AccessAlternateDirectly":{"shape":"BooleanOptional"},
|
2037
|
+
"UseAlternateFolderForOnline":{"shape":"BooleanOptional"},
|
2038
|
+
"OraclePathPrefix":{"shape":"String"},
|
2039
|
+
"UsePathPrefix":{"shape":"String"},
|
2040
|
+
"ReplacePathPrefix":{"shape":"BooleanOptional"},
|
2041
|
+
"EnableHomogenousTablespace":{"shape":"BooleanOptional"},
|
2042
|
+
"DirectPathNoLog":{"shape":"BooleanOptional"},
|
2043
|
+
"ArchivedLogsOnly":{"shape":"BooleanOptional"},
|
1986
2044
|
"AsmPassword":{"shape":"SecretString"},
|
1987
2045
|
"AsmServer":{"shape":"String"},
|
1988
2046
|
"AsmUser":{"shape":"String"},
|
2047
|
+
"CharLengthSemantics":{"shape":"CharLengthSemantics"},
|
1989
2048
|
"DatabaseName":{"shape":"String"},
|
2049
|
+
"DirectPathParallelLoad":{"shape":"BooleanOptional"},
|
2050
|
+
"FailTasksOnLobTruncation":{"shape":"BooleanOptional"},
|
2051
|
+
"NumberDatatypeScale":{"shape":"IntegerOptional"},
|
1990
2052
|
"Password":{"shape":"SecretString"},
|
1991
2053
|
"Port":{"shape":"IntegerOptional"},
|
2054
|
+
"ReadTableSpaceName":{"shape":"BooleanOptional"},
|
2055
|
+
"RetryInterval":{"shape":"IntegerOptional"},
|
1992
2056
|
"SecurityDbEncryption":{"shape":"SecretString"},
|
1993
2057
|
"SecurityDbEncryptionName":{"shape":"String"},
|
1994
2058
|
"ServerName":{"shape":"String"},
|
@@ -2042,11 +2106,18 @@
|
|
2042
2106
|
"PostgreSQLSettings":{
|
2043
2107
|
"type":"structure",
|
2044
2108
|
"members":{
|
2109
|
+
"AfterConnectScript":{"shape":"String"},
|
2110
|
+
"CaptureDdls":{"shape":"BooleanOptional"},
|
2111
|
+
"MaxFileSize":{"shape":"IntegerOptional"},
|
2045
2112
|
"DatabaseName":{"shape":"String"},
|
2113
|
+
"DdlArtifactsSchema":{"shape":"String"},
|
2114
|
+
"ExecuteTimeout":{"shape":"IntegerOptional"},
|
2115
|
+
"FailTasksOnLobTruncation":{"shape":"BooleanOptional"},
|
2046
2116
|
"Password":{"shape":"SecretString"},
|
2047
2117
|
"Port":{"shape":"IntegerOptional"},
|
2048
2118
|
"ServerName":{"shape":"String"},
|
2049
|
-
"Username":{"shape":"String"}
|
2119
|
+
"Username":{"shape":"String"},
|
2120
|
+
"SlotName":{"shape":"String"}
|
2050
2121
|
}
|
2051
2122
|
},
|
2052
2123
|
"RebootReplicationInstanceMessage":{
|
@@ -2070,11 +2141,14 @@
|
|
2070
2141
|
"AfterConnectScript":{"shape":"String"},
|
2071
2142
|
"BucketFolder":{"shape":"String"},
|
2072
2143
|
"BucketName":{"shape":"String"},
|
2144
|
+
"CaseSensitiveNames":{"shape":"BooleanOptional"},
|
2145
|
+
"CompUpdate":{"shape":"BooleanOptional"},
|
2073
2146
|
"ConnectionTimeout":{"shape":"IntegerOptional"},
|
2074
2147
|
"DatabaseName":{"shape":"String"},
|
2075
2148
|
"DateFormat":{"shape":"String"},
|
2076
2149
|
"EmptyAsNull":{"shape":"BooleanOptional"},
|
2077
2150
|
"EncryptionMode":{"shape":"EncryptionModeValue"},
|
2151
|
+
"ExplicitIds":{"shape":"BooleanOptional"},
|
2078
2152
|
"FileTransferUploadStreams":{"shape":"IntegerOptional"},
|
2079
2153
|
"LoadTimeout":{"shape":"IntegerOptional"},
|
2080
2154
|
"MaxFileSize":{"shape":"IntegerOptional"},
|
@@ -2436,7 +2510,10 @@
|
|
2436
2510
|
"CdcInsertsOnly":{"shape":"BooleanOptional"},
|
2437
2511
|
"TimestampColumnName":{"shape":"String"},
|
2438
2512
|
"ParquetTimestampInMillisecond":{"shape":"BooleanOptional"},
|
2439
|
-
"CdcInsertsAndUpdates":{"shape":"BooleanOptional"}
|
2513
|
+
"CdcInsertsAndUpdates":{"shape":"BooleanOptional"},
|
2514
|
+
"DatePartitionEnabled":{"shape":"BooleanOptional"},
|
2515
|
+
"DatePartitionSequence":{"shape":"DatePartitionSequenceValue"},
|
2516
|
+
"DatePartitionDelimiter":{"shape":"DatePartitionDelimiterValue"}
|
2440
2517
|
}
|
2441
2518
|
},
|
2442
2519
|
"SNSInvalidTopicFault":{
|
@@ -2453,6 +2530,14 @@
|
|
2453
2530
|
},
|
2454
2531
|
"exception":true
|
2455
2532
|
},
|
2533
|
+
"SafeguardPolicy":{
|
2534
|
+
"type":"string",
|
2535
|
+
"enum":[
|
2536
|
+
"rely-on-sql-server-replication-agent",
|
2537
|
+
"exclusive-automatic-truncation",
|
2538
|
+
"shared-automatic-truncation"
|
2539
|
+
]
|
2540
|
+
},
|
2456
2541
|
"SchemaList":{
|
2457
2542
|
"type":"list",
|
2458
2543
|
"member":{"shape":"String"}
|
@@ -2659,6 +2744,13 @@
|
|
2659
2744
|
"type":"list",
|
2660
2745
|
"member":{"shape":"Tag"}
|
2661
2746
|
},
|
2747
|
+
"TargetDbType":{
|
2748
|
+
"type":"string",
|
2749
|
+
"enum":[
|
2750
|
+
"specific-database",
|
2751
|
+
"multiple-databases"
|
2752
|
+
]
|
2753
|
+
},
|
2662
2754
|
"TestConnectionMessage":{
|
2663
2755
|
"type":"structure",
|
2664
2756
|
"required":[
|
@@ -3571,7 +3571,8 @@
|
|
3571
3571
|
"method":"POST",
|
3572
3572
|
"requestUri":"/"
|
3573
3573
|
},
|
3574
|
-
"input":{"shape":"RevokeSecurityGroupEgressRequest"}
|
3574
|
+
"input":{"shape":"RevokeSecurityGroupEgressRequest"},
|
3575
|
+
"output":{"shape":"RevokeSecurityGroupEgressResult"}
|
3575
3576
|
},
|
3576
3577
|
"RevokeSecurityGroupIngress":{
|
3577
3578
|
"name":"RevokeSecurityGroupIngress",
|
@@ -3579,7 +3580,8 @@
|
|
3579
3580
|
"method":"POST",
|
3580
3581
|
"requestUri":"/"
|
3581
3582
|
},
|
3582
|
-
"input":{"shape":"RevokeSecurityGroupIngressRequest"}
|
3583
|
+
"input":{"shape":"RevokeSecurityGroupIngressRequest"},
|
3584
|
+
"output":{"shape":"RevokeSecurityGroupIngressResult"}
|
3583
3585
|
},
|
3584
3586
|
"RunInstances":{
|
3585
3587
|
"name":"RunInstances",
|
@@ -20574,6 +20576,10 @@
|
|
20574
20576
|
"shape":"Integer",
|
20575
20577
|
"locationName":"peerBgpAsn"
|
20576
20578
|
},
|
20579
|
+
"OwnerId":{
|
20580
|
+
"shape":"String",
|
20581
|
+
"locationName":"ownerId"
|
20582
|
+
},
|
20577
20583
|
"Tags":{
|
20578
20584
|
"shape":"TagList",
|
20579
20585
|
"locationName":"tagSet"
|
@@ -20595,6 +20601,10 @@
|
|
20595
20601
|
"shape":"String",
|
20596
20602
|
"locationName":"localGatewayId"
|
20597
20603
|
},
|
20604
|
+
"OwnerId":{
|
20605
|
+
"shape":"String",
|
20606
|
+
"locationName":"ownerId"
|
20607
|
+
},
|
20598
20608
|
"Tags":{
|
20599
20609
|
"shape":"TagList",
|
20600
20610
|
"locationName":"tagSet"
|
@@ -25452,6 +25462,19 @@
|
|
25452
25462
|
}
|
25453
25463
|
}
|
25454
25464
|
},
|
25465
|
+
"RevokeSecurityGroupEgressResult":{
|
25466
|
+
"type":"structure",
|
25467
|
+
"members":{
|
25468
|
+
"Return":{
|
25469
|
+
"shape":"Boolean",
|
25470
|
+
"locationName":"return"
|
25471
|
+
},
|
25472
|
+
"UnknownIpPermissions":{
|
25473
|
+
"shape":"IpPermissionList",
|
25474
|
+
"locationName":"unknownIpPermissionSet"
|
25475
|
+
}
|
25476
|
+
}
|
25477
|
+
},
|
25455
25478
|
"RevokeSecurityGroupIngressRequest":{
|
25456
25479
|
"type":"structure",
|
25457
25480
|
"members":{
|
@@ -25470,6 +25493,19 @@
|
|
25470
25493
|
}
|
25471
25494
|
}
|
25472
25495
|
},
|
25496
|
+
"RevokeSecurityGroupIngressResult":{
|
25497
|
+
"type":"structure",
|
25498
|
+
"members":{
|
25499
|
+
"Return":{
|
25500
|
+
"shape":"Boolean",
|
25501
|
+
"locationName":"return"
|
25502
|
+
},
|
25503
|
+
"UnknownIpPermissions":{
|
25504
|
+
"shape":"IpPermissionList",
|
25505
|
+
"locationName":"unknownIpPermissionSet"
|
25506
|
+
}
|
25507
|
+
}
|
25508
|
+
},
|
25473
25509
|
"RootDeviceType":{
|
25474
25510
|
"type":"string",
|
25475
25511
|
"enum":[
|