cdk-docker-image-deployment 0.0.65 → 0.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +24 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/acm-2015-12-08.min.json +2 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +76 -40
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +116 -101
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +78 -10
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +81 -37
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1032 -985
- package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +148 -128
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +354 -87
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +174 -140
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +131 -123
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +530 -289
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +459 -139
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.examples.json +5 -0
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +624 -0
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +45 -39
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +181 -31
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +63 -59
- package/node_modules/aws-sdk/clients/acm.d.ts +9 -4
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/athena.d.ts +35 -0
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +44 -24
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +163 -63
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +63 -5
- package/node_modules/aws-sdk/clients/ec2.d.ts +68 -8
- package/node_modules/aws-sdk/clients/elasticache.d.ts +62 -11
- package/node_modules/aws-sdk/clients/fms.d.ts +322 -1
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +260 -2
- package/node_modules/aws-sdk/clients/lightsail.d.ts +85 -17
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -7
- package/node_modules/aws-sdk/clients/opensearch.d.ts +890 -430
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +693 -0
- package/node_modules/aws-sdk/clients/resourceexplorer2.js +18 -0
- package/node_modules/aws-sdk/clients/route53.d.ts +4 -4
- package/node_modules/aws-sdk/clients/ssm.d.ts +5 -0
- package/node_modules/aws-sdk/clients/wafv2.d.ts +3 -3
- package/node_modules/aws-sdk/clients/wellarchitected.d.ts +182 -11
- package/node_modules/aws-sdk/clients/workspaces.d.ts +6 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +59 -22
- package/node_modules/aws-sdk/dist/aws-sdk.js +1507 -1334
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['resourceexplorer2'] = {};
|
|
7
|
+
AWS.ResourceExplorer2 = Service.defineService('resourceexplorer2', ['2022-07-28']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['resourceexplorer2'], '2022-07-28', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/resource-explorer-2-2022-07-28.min.json');
|
|
11
|
+
model.paginators = require('../apis/resource-explorer-2-2022-07-28.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.ResourceExplorer2;
|
|
@@ -850,7 +850,7 @@ declare namespace Route53 {
|
|
|
850
850
|
Dimensions?: DimensionList;
|
|
851
851
|
}
|
|
852
852
|
export type CloudWatchLogsLogGroupArn = string;
|
|
853
|
-
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|string;
|
|
853
|
+
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|string;
|
|
854
854
|
export type CollectionName = string;
|
|
855
855
|
export type CollectionSummaries = CollectionSummary[];
|
|
856
856
|
export interface CollectionSummary {
|
|
@@ -2580,7 +2580,7 @@ declare namespace Route53 {
|
|
|
2580
2580
|
*/
|
|
2581
2581
|
Weight?: ResourceRecordSetWeight;
|
|
2582
2582
|
/**
|
|
2583
|
-
* Latency-based resource record sets only: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an Amazon Web Services resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type.
|
|
2583
|
+
* Latency-based resource record sets only: The Amazon EC2 Region where you created the resource that this resource record set refers to. The resource typically is an Amazon Web Services resource, such as an EC2 instance or an ELB load balancer, and is referred to by an IP address or a DNS domain name, depending on the record type. When Amazon Route 53 receives a DNS query for a domain name and type for which you have created latency resource record sets, Route 53 selects the latency resource record set that has the lowest latency between the end user and the associated Amazon EC2 Region. Route 53 then returns the value that is associated with the selected resource record set. Note the following: You can only specify one ResourceRecord per latency resource record set. You can only create one latency resource record set for each Amazon EC2 Region. You aren't required to create latency resource record sets for all Amazon EC2 Regions. Route 53 will choose the region with the best latency from among the regions that you create latency resource record sets for. You can't create non-latency resource record sets that have the same values for the Name and Type elements as latency resource record sets.
|
|
2584
2584
|
*/
|
|
2585
2585
|
Region?: ResourceRecordSetRegion;
|
|
2586
2586
|
/**
|
|
@@ -2620,7 +2620,7 @@ declare namespace Route53 {
|
|
|
2620
2620
|
export type ResourceRecordSetFailover = "PRIMARY"|"SECONDARY"|string;
|
|
2621
2621
|
export type ResourceRecordSetIdentifier = string;
|
|
2622
2622
|
export type ResourceRecordSetMultiValueAnswer = boolean;
|
|
2623
|
-
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"ap-south-1"|"af-south-1"|"eu-south-1"|string;
|
|
2623
|
+
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"af-south-1"|"eu-south-1"|string;
|
|
2624
2624
|
export type ResourceRecordSetWeight = number;
|
|
2625
2625
|
export type ResourceRecordSets = ResourceRecordSet[];
|
|
2626
2626
|
export type ResourceRecords = ResourceRecord[];
|
|
@@ -2991,7 +2991,7 @@ declare namespace Route53 {
|
|
|
2991
2991
|
VPCId?: VPCId;
|
|
2992
2992
|
}
|
|
2993
2993
|
export type VPCId = string;
|
|
2994
|
-
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|string;
|
|
2994
|
+
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|string;
|
|
2995
2995
|
export type VPCs = VPC[];
|
|
2996
2996
|
/**
|
|
2997
2997
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
@@ -9083,6 +9083,10 @@ declare namespace SSM {
|
|
|
9083
9083
|
* The combination of Amazon Web Services Regions and Amazon Web Services accounts targeted by the current Automation execution.
|
|
9084
9084
|
*/
|
|
9085
9085
|
TargetLocation?: TargetLocation;
|
|
9086
|
+
/**
|
|
9087
|
+
* The CloudWatch alarms that were invoked by the automation.
|
|
9088
|
+
*/
|
|
9089
|
+
TriggeredAlarms?: AlarmStateInformationList;
|
|
9086
9090
|
}
|
|
9087
9091
|
export interface StepExecutionFilter {
|
|
9088
9092
|
/**
|
|
@@ -9162,6 +9166,7 @@ declare namespace SSM {
|
|
|
9162
9166
|
* The Automation execution role used by the currently running Automation. If not specified, the default value is AWS-SystemsManager-AutomationExecutionRole.
|
|
9163
9167
|
*/
|
|
9164
9168
|
ExecutionRoleName?: ExecutionRoleName;
|
|
9169
|
+
TargetLocationAlarmConfiguration?: AlarmConfiguration;
|
|
9165
9170
|
}
|
|
9166
9171
|
export type TargetLocations = TargetLocation[];
|
|
9167
9172
|
export type TargetMap = {[key: string]: TargetMapValueList};
|
|
@@ -1102,7 +1102,7 @@ declare namespace WAFV2 {
|
|
|
1102
1102
|
}
|
|
1103
1103
|
export interface GeoMatchStatement {
|
|
1104
1104
|
/**
|
|
1105
|
-
* An array of two-character country codes, for example, [ "US", "CN" ], from the alpha-2 country ISO codes of the ISO 3166 international standard.
|
|
1105
|
+
* An array of two-character country codes that you want to match against, for example, [ "US", "CN" ], from the alpha-2 country ISO codes of the ISO 3166 international standard. When you use a geo match statement just for the region and country labels that it adds to requests, you still have to supply a country code for the rule to evaluate. In this case, you configure the rule to only count matching requests, but it will still generate logging and count metrics for any matches. You can reduce the logging and metrics that the rule produces by specifying a country that's unlikely to be a source of traffic to your site.
|
|
1106
1106
|
*/
|
|
1107
1107
|
CountryCodes?: CountryCodes;
|
|
1108
1108
|
/**
|
|
@@ -2581,7 +2581,7 @@ declare namespace WAFV2 {
|
|
|
2581
2581
|
*/
|
|
2582
2582
|
SizeConstraintStatement?: SizeConstraintStatement;
|
|
2583
2583
|
/**
|
|
2584
|
-
* A rule statement
|
|
2584
|
+
* A rule statement that labels web requests by country and region and that matches against web requests based on country code. A geo match rule labels every request that it inspects regardless of whether it finds a match. To manage requests only by country, you can use this statement by itself and specify the countries that you want to match against in the CountryCodes array. Otherwise, configure your geo match rule with Count action so that it only labels requests. Then, add one or more label match rules to run after the geo match rule and configure them to match against the geographic labels and handle the requests as needed. WAF labels requests using the alpha-2 country and region codes from the International Organization for Standardization (ISO) 3166 standard. WAF determines the codes using either the IP address in the web request origin or, if you specify it, the address in the geo match ForwardedIPConfig. If you use the web request origin, the label formats are awswaf:clientip:geo:region:<ISO country code>-<ISO region code> and awswaf:clientip:geo:country:<ISO country code>. If you use a forwarded IP address, the label formats are awswaf:forwardedip:geo:region:<ISO country code>-<ISO region code> and awswaf:forwardedip:geo:country:<ISO country code>. For additional details, see Geographic match rule statement in the WAF Developer Guide.
|
|
2585
2585
|
*/
|
|
2586
2586
|
GeoMatchStatement?: GeoMatchStatement;
|
|
2587
2587
|
/**
|
|
@@ -2617,7 +2617,7 @@ declare namespace WAFV2 {
|
|
|
2617
2617
|
*/
|
|
2618
2618
|
ManagedRuleGroupStatement?: ManagedRuleGroupStatement;
|
|
2619
2619
|
/**
|
|
2620
|
-
* A rule statement
|
|
2620
|
+
* A rule statement to match against labels that have been added to the web request by rules that have already run in the web ACL. The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.
|
|
2621
2621
|
*/
|
|
2622
2622
|
LabelMatchStatement?: LabelMatchStatement;
|
|
2623
2623
|
/**
|
|
@@ -20,11 +20,11 @@ declare class WellArchitected extends Service {
|
|
|
20
20
|
*/
|
|
21
21
|
associateLenses(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Create a lens share. The owner of a lens can share it with other Amazon Web Services accounts
|
|
23
|
+
* Create a lens share. The owner of a lens can share it with other Amazon Web Services accounts, IAM users, an organization, and organizational units (OUs) in the same Amazon Web Services Region. Shared access to a lens is not removed until the lens invitation is deleted. Disclaimer By sharing your custom lenses with other Amazon Web Services accounts, you acknowledge that Amazon Web Services will make your custom lenses available to those other accounts. Those other accounts may continue to access and use your shared custom lenses even if you delete the custom lenses from your own Amazon Web Services account or terminate your Amazon Web Services account.
|
|
24
24
|
*/
|
|
25
25
|
createLensShare(params: WellArchitected.Types.CreateLensShareInput, callback?: (err: AWSError, data: WellArchitected.Types.CreateLensShareOutput) => void): Request<WellArchitected.Types.CreateLensShareOutput, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Create a lens share. The owner of a lens can share it with other Amazon Web Services accounts
|
|
27
|
+
* Create a lens share. The owner of a lens can share it with other Amazon Web Services accounts, IAM users, an organization, and organizational units (OUs) in the same Amazon Web Services Region. Shared access to a lens is not removed until the lens invitation is deleted. Disclaimer By sharing your custom lenses with other Amazon Web Services accounts, you acknowledge that Amazon Web Services will make your custom lenses available to those other accounts. Those other accounts may continue to access and use your shared custom lenses even if you delete the custom lenses from your own Amazon Web Services account or terminate your Amazon Web Services account.
|
|
28
28
|
*/
|
|
29
29
|
createLensShare(callback?: (err: AWSError, data: WellArchitected.Types.CreateLensShareOutput) => void): Request<WellArchitected.Types.CreateLensShareOutput, AWSError>;
|
|
30
30
|
/**
|
|
@@ -44,11 +44,11 @@ declare class WellArchitected extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
createMilestone(callback?: (err: AWSError, data: WellArchitected.Types.CreateMilestoneOutput) => void): Request<WellArchitected.Types.CreateMilestoneOutput, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Create a new workload. The owner of a workload can share the workload with other Amazon Web Services accounts
|
|
47
|
+
* Create a new workload. The owner of a workload can share the workload with other Amazon Web Services accounts, IAM users, an organization, and organizational units (OUs) in the same Amazon Web Services Region. Only the owner of a workload can delete it. For more information, see Defining a Workload in the Well-Architected Tool User Guide.
|
|
48
48
|
*/
|
|
49
49
|
createWorkload(params: WellArchitected.Types.CreateWorkloadInput, callback?: (err: AWSError, data: WellArchitected.Types.CreateWorkloadOutput) => void): Request<WellArchitected.Types.CreateWorkloadOutput, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Create a new workload. The owner of a workload can share the workload with other Amazon Web Services accounts
|
|
51
|
+
* Create a new workload. The owner of a workload can share the workload with other Amazon Web Services accounts, IAM users, an organization, and organizational units (OUs) in the same Amazon Web Services Region. Only the owner of a workload can delete it. For more information, see Defining a Workload in the Well-Architected Tool User Guide.
|
|
52
52
|
*/
|
|
53
53
|
createWorkload(callback?: (err: AWSError, data: WellArchitected.Types.CreateWorkloadOutput) => void): Request<WellArchitected.Types.CreateWorkloadOutput, AWSError>;
|
|
54
54
|
/**
|
|
@@ -68,11 +68,11 @@ declare class WellArchitected extends Service {
|
|
|
68
68
|
*/
|
|
69
69
|
deleteLens(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
* Delete a lens share. After the lens share is deleted, Amazon Web Services accounts
|
|
71
|
+
* Delete a lens share. After the lens share is deleted, Amazon Web Services accounts, IAM users, organizations, and organizational units (OUs) that you shared the lens with can continue to use it, but they will no longer be able to apply it to new workloads. Disclaimer By sharing your custom lenses with other Amazon Web Services accounts, you acknowledge that Amazon Web Services will make your custom lenses available to those other accounts. Those other accounts may continue to access and use your shared custom lenses even if you delete the custom lenses from your own Amazon Web Services account or terminate your Amazon Web Services account.
|
|
72
72
|
*/
|
|
73
73
|
deleteLensShare(params: WellArchitected.Types.DeleteLensShareInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
* Delete a lens share. After the lens share is deleted, Amazon Web Services accounts
|
|
75
|
+
* Delete a lens share. After the lens share is deleted, Amazon Web Services accounts, IAM users, organizations, and organizational units (OUs) that you shared the lens with can continue to use it, but they will no longer be able to apply it to new workloads. Disclaimer By sharing your custom lenses with other Amazon Web Services accounts, you acknowledge that Amazon Web Services will make your custom lenses available to those other accounts. Those other accounts may continue to access and use your shared custom lenses even if you delete the custom lenses from your own Amazon Web Services account or terminate your Amazon Web Services account.
|
|
76
76
|
*/
|
|
77
77
|
deleteLensShare(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
78
78
|
/**
|
|
@@ -179,6 +179,22 @@ declare class WellArchitected extends Service {
|
|
|
179
179
|
* List of answers.
|
|
180
180
|
*/
|
|
181
181
|
listAnswers(callback?: (err: AWSError, data: WellArchitected.Types.ListAnswersOutput) => void): Request<WellArchitected.Types.ListAnswersOutput, AWSError>;
|
|
182
|
+
/**
|
|
183
|
+
* List of Trusted Advisor check details by account related to the workload.
|
|
184
|
+
*/
|
|
185
|
+
listCheckDetails(params: WellArchitected.Types.ListCheckDetailsInput, callback?: (err: AWSError, data: WellArchitected.Types.ListCheckDetailsOutput) => void): Request<WellArchitected.Types.ListCheckDetailsOutput, AWSError>;
|
|
186
|
+
/**
|
|
187
|
+
* List of Trusted Advisor check details by account related to the workload.
|
|
188
|
+
*/
|
|
189
|
+
listCheckDetails(callback?: (err: AWSError, data: WellArchitected.Types.ListCheckDetailsOutput) => void): Request<WellArchitected.Types.ListCheckDetailsOutput, AWSError>;
|
|
190
|
+
/**
|
|
191
|
+
* List of Trusted Advisor checks summarized for all accounts related to the workload.
|
|
192
|
+
*/
|
|
193
|
+
listCheckSummaries(params: WellArchitected.Types.ListCheckSummariesInput, callback?: (err: AWSError, data: WellArchitected.Types.ListCheckSummariesOutput) => void): Request<WellArchitected.Types.ListCheckSummariesOutput, AWSError>;
|
|
194
|
+
/**
|
|
195
|
+
* List of Trusted Advisor checks summarized for all accounts related to the workload.
|
|
196
|
+
*/
|
|
197
|
+
listCheckSummaries(callback?: (err: AWSError, data: WellArchitected.Types.ListCheckSummariesOutput) => void): Request<WellArchitected.Types.ListCheckSummariesOutput, AWSError>;
|
|
182
198
|
/**
|
|
183
199
|
* List lens review improvements.
|
|
184
200
|
*/
|
|
@@ -300,11 +316,11 @@ declare class WellArchitected extends Service {
|
|
|
300
316
|
*/
|
|
301
317
|
updateLensReview(callback?: (err: AWSError, data: WellArchitected.Types.UpdateLensReviewOutput) => void): Request<WellArchitected.Types.UpdateLensReviewOutput, AWSError>;
|
|
302
318
|
/**
|
|
303
|
-
* Update a workload invitation.
|
|
319
|
+
* Update a workload or custom lens share invitation. This API operation can be called independently of any resource. Previous documentation implied that a workload ARN must be specified.
|
|
304
320
|
*/
|
|
305
321
|
updateShareInvitation(params: WellArchitected.Types.UpdateShareInvitationInput, callback?: (err: AWSError, data: WellArchitected.Types.UpdateShareInvitationOutput) => void): Request<WellArchitected.Types.UpdateShareInvitationOutput, AWSError>;
|
|
306
322
|
/**
|
|
307
|
-
* Update a workload invitation.
|
|
323
|
+
* Update a workload or custom lens share invitation. This API operation can be called independently of any resource. Previous documentation implied that a workload ARN must be specified.
|
|
308
324
|
*/
|
|
309
325
|
updateShareInvitation(callback?: (err: AWSError, data: WellArchitected.Types.UpdateShareInvitationOutput) => void): Request<WellArchitected.Types.UpdateShareInvitationOutput, AWSError>;
|
|
310
326
|
/**
|
|
@@ -333,6 +349,7 @@ declare class WellArchitected extends Service {
|
|
|
333
349
|
upgradeLensReview(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
334
350
|
}
|
|
335
351
|
declare namespace WellArchitected {
|
|
352
|
+
export type AccountSummary = {[key: string]: CheckStatusCount};
|
|
336
353
|
export type AdditionalResourceType = "HELPFUL_RESOURCE"|"IMPROVEMENT_PLAN"|string;
|
|
337
354
|
export interface AdditionalResources {
|
|
338
355
|
/**
|
|
@@ -389,6 +406,7 @@ declare namespace WellArchitected {
|
|
|
389
406
|
*/
|
|
390
407
|
Reason?: AnswerReason;
|
|
391
408
|
}
|
|
409
|
+
export type ApplicationArn = string;
|
|
392
410
|
export interface AssociateLensesInput {
|
|
393
411
|
WorkloadId: WorkloadId;
|
|
394
412
|
LensAliases: LensAliases;
|
|
@@ -396,6 +414,88 @@ declare namespace WellArchitected {
|
|
|
396
414
|
export type AwsAccountId = string;
|
|
397
415
|
export type AwsRegion = string;
|
|
398
416
|
export type Base64String = string;
|
|
417
|
+
export type CheckDescription = string;
|
|
418
|
+
export interface CheckDetail {
|
|
419
|
+
/**
|
|
420
|
+
* Trusted Advisor check ID.
|
|
421
|
+
*/
|
|
422
|
+
Id?: CheckId;
|
|
423
|
+
/**
|
|
424
|
+
* Trusted Advisor check name.
|
|
425
|
+
*/
|
|
426
|
+
Name?: CheckName;
|
|
427
|
+
/**
|
|
428
|
+
* Trusted Advisor check description.
|
|
429
|
+
*/
|
|
430
|
+
Description?: CheckDescription;
|
|
431
|
+
/**
|
|
432
|
+
* Provider of the check related to the best practice.
|
|
433
|
+
*/
|
|
434
|
+
Provider?: CheckProvider;
|
|
435
|
+
/**
|
|
436
|
+
* Well-Architected Lens ARN associated to the check.
|
|
437
|
+
*/
|
|
438
|
+
LensArn?: LensArn;
|
|
439
|
+
PillarId?: PillarId;
|
|
440
|
+
QuestionId?: QuestionId;
|
|
441
|
+
ChoiceId?: ChoiceId;
|
|
442
|
+
/**
|
|
443
|
+
* Status associated to the check.
|
|
444
|
+
*/
|
|
445
|
+
Status?: CheckStatus;
|
|
446
|
+
AccountId?: AwsAccountId;
|
|
447
|
+
/**
|
|
448
|
+
* Count of flagged resources associated to the check.
|
|
449
|
+
*/
|
|
450
|
+
FlaggedResources?: FlaggedResources;
|
|
451
|
+
/**
|
|
452
|
+
* Reason associated to the check.
|
|
453
|
+
*/
|
|
454
|
+
Reason?: CheckFailureReason;
|
|
455
|
+
UpdatedAt?: Timestamp;
|
|
456
|
+
}
|
|
457
|
+
export type CheckDetails = CheckDetail[];
|
|
458
|
+
export type CheckFailureReason = "ASSUME_ROLE_ERROR"|"ACCESS_DENIED"|"UNKNOWN_ERROR"|"PREMIUM_SUPPORT_REQUIRED"|string;
|
|
459
|
+
export type CheckId = string;
|
|
460
|
+
export type CheckName = string;
|
|
461
|
+
export type CheckProvider = "TRUSTED_ADVISOR"|string;
|
|
462
|
+
export type CheckStatus = "OKAY"|"WARNING"|"ERROR"|"NOT_AVAILABLE"|"FETCH_FAILED"|string;
|
|
463
|
+
export type CheckStatusCount = number;
|
|
464
|
+
export type CheckSummaries = CheckSummary[];
|
|
465
|
+
export interface CheckSummary {
|
|
466
|
+
/**
|
|
467
|
+
* Trusted Advisor check ID.
|
|
468
|
+
*/
|
|
469
|
+
Id?: CheckId;
|
|
470
|
+
/**
|
|
471
|
+
* Trusted Advisor check name.
|
|
472
|
+
*/
|
|
473
|
+
Name?: CheckName;
|
|
474
|
+
/**
|
|
475
|
+
* Provider of the check related to the best practice.
|
|
476
|
+
*/
|
|
477
|
+
Provider?: CheckProvider;
|
|
478
|
+
/**
|
|
479
|
+
* Trusted Advisor check description.
|
|
480
|
+
*/
|
|
481
|
+
Description?: CheckDescription;
|
|
482
|
+
UpdatedAt?: Timestamp;
|
|
483
|
+
/**
|
|
484
|
+
* Well-Architected Lens ARN associated to the check.
|
|
485
|
+
*/
|
|
486
|
+
LensArn?: LensArn;
|
|
487
|
+
PillarId?: PillarId;
|
|
488
|
+
QuestionId?: QuestionId;
|
|
489
|
+
ChoiceId?: ChoiceId;
|
|
490
|
+
/**
|
|
491
|
+
* Status associated to the check.
|
|
492
|
+
*/
|
|
493
|
+
Status?: CheckStatus;
|
|
494
|
+
/**
|
|
495
|
+
* Account summary associated to the check.
|
|
496
|
+
*/
|
|
497
|
+
AccountSummary?: AccountSummary;
|
|
498
|
+
}
|
|
399
499
|
export interface Choice {
|
|
400
500
|
ChoiceId?: ChoiceId;
|
|
401
501
|
Title?: ChoiceTitle;
|
|
@@ -544,6 +644,14 @@ declare namespace WellArchitected {
|
|
|
544
644
|
* The tags to be associated with the workload.
|
|
545
645
|
*/
|
|
546
646
|
Tags?: TagMap;
|
|
647
|
+
/**
|
|
648
|
+
* Well-Architected discovery configuration settings associated to the workload.
|
|
649
|
+
*/
|
|
650
|
+
DiscoveryConfig?: WorkloadDiscoveryConfig;
|
|
651
|
+
/**
|
|
652
|
+
* List of AppRegistry application ARNs associated to the workload.
|
|
653
|
+
*/
|
|
654
|
+
Applications?: WorkloadApplications;
|
|
547
655
|
}
|
|
548
656
|
export interface CreateWorkloadOutput {
|
|
549
657
|
WorkloadId?: WorkloadId;
|
|
@@ -600,6 +708,7 @@ declare namespace WellArchitected {
|
|
|
600
708
|
*/
|
|
601
709
|
LensJSON?: LensJSON;
|
|
602
710
|
}
|
|
711
|
+
export type FlaggedResources = number;
|
|
603
712
|
export interface GetAnswerInput {
|
|
604
713
|
WorkloadId: WorkloadId;
|
|
605
714
|
LensAlias: LensAlias;
|
|
@@ -893,6 +1002,44 @@ declare namespace WellArchitected {
|
|
|
893
1002
|
AnswerSummaries?: AnswerSummaries;
|
|
894
1003
|
NextToken?: NextToken;
|
|
895
1004
|
}
|
|
1005
|
+
export interface ListCheckDetailsInput {
|
|
1006
|
+
WorkloadId: WorkloadId;
|
|
1007
|
+
NextToken?: NextToken;
|
|
1008
|
+
MaxResults?: MaxResults;
|
|
1009
|
+
/**
|
|
1010
|
+
* Well-Architected Lens ARN.
|
|
1011
|
+
*/
|
|
1012
|
+
LensArn: LensArn;
|
|
1013
|
+
PillarId: PillarId;
|
|
1014
|
+
QuestionId: QuestionId;
|
|
1015
|
+
ChoiceId: ChoiceId;
|
|
1016
|
+
}
|
|
1017
|
+
export interface ListCheckDetailsOutput {
|
|
1018
|
+
/**
|
|
1019
|
+
* The details about the Trusted Advisor checks related to the Well-Architected best practice.
|
|
1020
|
+
*/
|
|
1021
|
+
CheckDetails?: CheckDetails;
|
|
1022
|
+
NextToken?: NextToken;
|
|
1023
|
+
}
|
|
1024
|
+
export interface ListCheckSummariesInput {
|
|
1025
|
+
WorkloadId: WorkloadId;
|
|
1026
|
+
NextToken?: NextToken;
|
|
1027
|
+
MaxResults?: MaxResults;
|
|
1028
|
+
/**
|
|
1029
|
+
* Well-Architected Lens ARN.
|
|
1030
|
+
*/
|
|
1031
|
+
LensArn: LensArn;
|
|
1032
|
+
PillarId: PillarId;
|
|
1033
|
+
QuestionId: QuestionId;
|
|
1034
|
+
ChoiceId: ChoiceId;
|
|
1035
|
+
}
|
|
1036
|
+
export interface ListCheckSummariesOutput {
|
|
1037
|
+
/**
|
|
1038
|
+
* List of Trusted Advisor summaries related to the Well-Architected best practice.
|
|
1039
|
+
*/
|
|
1040
|
+
CheckSummaries?: CheckSummaries;
|
|
1041
|
+
NextToken?: NextToken;
|
|
1042
|
+
}
|
|
896
1043
|
export interface ListLensReviewImprovementsInput {
|
|
897
1044
|
WorkloadId: WorkloadId;
|
|
898
1045
|
LensAlias: LensAlias;
|
|
@@ -931,7 +1078,7 @@ declare namespace WellArchitected {
|
|
|
931
1078
|
export interface ListLensSharesInput {
|
|
932
1079
|
LensAlias: LensAlias;
|
|
933
1080
|
/**
|
|
934
|
-
* The Amazon Web Services account ID
|
|
1081
|
+
* The Amazon Web Services account ID, IAM role, organization ID, or organizational unit (OU) ID with which the lens is shared.
|
|
935
1082
|
*/
|
|
936
1083
|
SharedWithPrefix?: SharedWithPrefix;
|
|
937
1084
|
NextToken?: NextToken;
|
|
@@ -1027,7 +1174,7 @@ declare namespace WellArchitected {
|
|
|
1027
1174
|
export interface ListWorkloadSharesInput {
|
|
1028
1175
|
WorkloadId: WorkloadId;
|
|
1029
1176
|
/**
|
|
1030
|
-
* The Amazon Web Services account ID
|
|
1177
|
+
* The Amazon Web Services account ID, IAM role, organization ID, or organizational unit (OU) ID with which the workload is shared.
|
|
1031
1178
|
*/
|
|
1032
1179
|
SharedWithPrefix?: SharedWithPrefix;
|
|
1033
1180
|
NextToken?: NextToken;
|
|
@@ -1185,6 +1332,7 @@ declare namespace WellArchitected {
|
|
|
1185
1332
|
}
|
|
1186
1333
|
export type TagValue = string;
|
|
1187
1334
|
export type Timestamp = Date;
|
|
1335
|
+
export type TrustedAdvisorIntegrationStatus = "ENABLED"|"DISABLED"|string;
|
|
1188
1336
|
export interface UntagResourceInput {
|
|
1189
1337
|
WorkloadArn: WorkloadArn;
|
|
1190
1338
|
/**
|
|
@@ -1244,7 +1392,7 @@ declare namespace WellArchitected {
|
|
|
1244
1392
|
}
|
|
1245
1393
|
export interface UpdateShareInvitationOutput {
|
|
1246
1394
|
/**
|
|
1247
|
-
* The updated workload share invitation.
|
|
1395
|
+
* The updated workload or custom lens share invitation.
|
|
1248
1396
|
*/
|
|
1249
1397
|
ShareInvitation?: ShareInvitation;
|
|
1250
1398
|
}
|
|
@@ -1267,6 +1415,14 @@ declare namespace WellArchitected {
|
|
|
1267
1415
|
Industry?: WorkloadIndustry;
|
|
1268
1416
|
Notes?: Notes;
|
|
1269
1417
|
ImprovementStatus?: WorkloadImprovementStatus;
|
|
1418
|
+
/**
|
|
1419
|
+
* Well-Architected discovery configuration settings to associate to the workload.
|
|
1420
|
+
*/
|
|
1421
|
+
DiscoveryConfig?: WorkloadDiscoveryConfig;
|
|
1422
|
+
/**
|
|
1423
|
+
* List of AppRegistry application ARNs to associate to the workload.
|
|
1424
|
+
*/
|
|
1425
|
+
Applications?: WorkloadApplications;
|
|
1270
1426
|
}
|
|
1271
1427
|
export interface UpdateWorkloadOutput {
|
|
1272
1428
|
Workload?: Workload;
|
|
@@ -1326,12 +1482,27 @@ declare namespace WellArchitected {
|
|
|
1326
1482
|
* The tags associated with the workload.
|
|
1327
1483
|
*/
|
|
1328
1484
|
Tags?: TagMap;
|
|
1485
|
+
/**
|
|
1486
|
+
* Discovery configuration associated to the workload.
|
|
1487
|
+
*/
|
|
1488
|
+
DiscoveryConfig?: WorkloadDiscoveryConfig;
|
|
1489
|
+
/**
|
|
1490
|
+
* List of AppRegistry application ARNs associated to the workload.
|
|
1491
|
+
*/
|
|
1492
|
+
Applications?: WorkloadApplications;
|
|
1329
1493
|
}
|
|
1330
1494
|
export type WorkloadAccountIds = AwsAccountId[];
|
|
1495
|
+
export type WorkloadApplications = ApplicationArn[];
|
|
1331
1496
|
export type WorkloadArchitecturalDesign = string;
|
|
1332
1497
|
export type WorkloadArn = string;
|
|
1333
1498
|
export type WorkloadAwsRegions = AwsRegion[];
|
|
1334
1499
|
export type WorkloadDescription = string;
|
|
1500
|
+
export interface WorkloadDiscoveryConfig {
|
|
1501
|
+
/**
|
|
1502
|
+
* Discovery integration status in respect to Trusted Advisor for the workload.
|
|
1503
|
+
*/
|
|
1504
|
+
TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus;
|
|
1505
|
+
}
|
|
1335
1506
|
export type WorkloadEnvironment = "PRODUCTION"|"PREPRODUCTION"|string;
|
|
1336
1507
|
export type WorkloadId = string;
|
|
1337
1508
|
export type WorkloadImprovementStatus = "NOT_APPLICABLE"|"NOT_STARTED"|"IN_PROGRESS"|"COMPLETE"|"RISK_ACKNOWLEDGED"|string;
|
|
@@ -1858,6 +1858,8 @@ declare namespace WorkSpaces {
|
|
|
1858
1858
|
}
|
|
1859
1859
|
export type OperatingSystemType = "WINDOWS"|"LINUX"|string;
|
|
1860
1860
|
export type PaginationToken = string;
|
|
1861
|
+
export type Protocol = "PCOIP"|"WSP"|string;
|
|
1862
|
+
export type ProtocolList = Protocol[];
|
|
1861
1863
|
export interface RebootRequest {
|
|
1862
1864
|
/**
|
|
1863
1865
|
* The identifier of the WorkSpace.
|
|
@@ -2508,6 +2510,10 @@ declare namespace WorkSpaces {
|
|
|
2508
2510
|
* The compute type. For more information, see Amazon WorkSpaces Bundles.
|
|
2509
2511
|
*/
|
|
2510
2512
|
ComputeTypeName?: Compute;
|
|
2513
|
+
/**
|
|
2514
|
+
* The protocol. For more information, see Protocols for Amazon WorkSpaces. Only available for WorkSpaces created with PCoIP bundles. The Protocols property is case sensitive. Ensure you use PCOIP or WSP. Unavailable for Windows 7 WorkSpaces and WorkSpaces using GPU-based bundles (Graphics, GraphicsPro, Graphics.g4dn, and GraphicsPro.g4dn).
|
|
2515
|
+
*/
|
|
2516
|
+
Protocols?: ProtocolList;
|
|
2511
2517
|
}
|
|
2512
2518
|
export interface WorkspaceRequest {
|
|
2513
2519
|
/**
|
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
83
83
|
/**
|
|
84
84
|
* @constant
|
|
85
85
|
*/
|
|
86
|
-
VERSION: '2.
|
|
86
|
+
VERSION: '2.1250.0',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @api private
|
|
@@ -1711,7 +1711,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1711
1711
|
/* 7 */
|
|
1712
1712
|
/***/ (function(module, exports) {
|
|
1713
1713
|
|
|
1714
|
-
module.exports = {"acm":{"name":"ACM","cors":true},"apigateway":{"name":"APIGateway","cors":true},"applicationautoscaling":{"prefix":"application-autoscaling","name":"ApplicationAutoScaling","cors":true},"appstream":{"name":"AppStream"},"autoscaling":{"name":"AutoScaling","cors":true},"batch":{"name":"Batch"},"budgets":{"name":"Budgets"},"clouddirectory":{"name":"CloudDirectory","versions":["2016-05-10*"]},"cloudformation":{"name":"CloudFormation","cors":true},"cloudfront":{"name":"CloudFront","versions":["2013-05-12*","2013-11-11*","2014-05-31*","2014-10-21*","2014-11-06*","2015-04-17*","2015-07-27*","2015-09-17*","2016-01-13*","2016-01-28*","2016-08-01*","2016-08-20*","2016-09-07*","2016-09-29*","2016-11-25*","2017-03-25*","2017-10-30*","2018-06-18*","2018-11-05*","2019-03-26*"],"cors":true},"cloudhsm":{"name":"CloudHSM","cors":true},"cloudsearch":{"name":"CloudSearch"},"cloudsearchdomain":{"name":"CloudSearchDomain"},"cloudtrail":{"name":"CloudTrail","cors":true},"cloudwatch":{"prefix":"monitoring","name":"CloudWatch","cors":true},"cloudwatchevents":{"prefix":"events","name":"CloudWatchEvents","versions":["2014-02-03*"],"cors":true},"cloudwatchlogs":{"prefix":"logs","name":"CloudWatchLogs","cors":true},"codebuild":{"name":"CodeBuild","cors":true},"codecommit":{"name":"CodeCommit","cors":true},"codedeploy":{"name":"CodeDeploy","cors":true},"codepipeline":{"name":"CodePipeline","cors":true},"cognitoidentity":{"prefix":"cognito-identity","name":"CognitoIdentity","cors":true},"cognitoidentityserviceprovider":{"prefix":"cognito-idp","name":"CognitoIdentityServiceProvider","cors":true},"cognitosync":{"prefix":"cognito-sync","name":"CognitoSync","cors":true},"configservice":{"prefix":"config","name":"ConfigService","cors":true},"cur":{"name":"CUR","cors":true},"datapipeline":{"name":"DataPipeline"},"devicefarm":{"name":"DeviceFarm","cors":true},"directconnect":{"name":"DirectConnect","cors":true},"directoryservice":{"prefix":"ds","name":"DirectoryService"},"discovery":{"name":"Discovery"},"dms":{"name":"DMS"},"dynamodb":{"name":"DynamoDB","cors":true},"dynamodbstreams":{"prefix":"streams.dynamodb","name":"DynamoDBStreams","cors":true},"ec2":{"name":"EC2","versions":["2013-06-15*","2013-10-15*","2014-02-01*","2014-05-01*","2014-06-15*","2014-09-01*","2014-10-01*","2015-03-01*","2015-04-15*","2015-10-01*","2016-04-01*","2016-09-15*"],"cors":true},"ecr":{"name":"ECR","cors":true},"ecs":{"name":"ECS","cors":true},"efs":{"prefix":"elasticfilesystem","name":"EFS","cors":true},"elasticache":{"name":"ElastiCache","versions":["2012-11-15*","2014-03-24*","2014-07-15*","2014-09-30*"],"cors":true},"elasticbeanstalk":{"name":"ElasticBeanstalk","cors":true},"elb":{"prefix":"elasticloadbalancing","name":"ELB","cors":true},"elbv2":{"prefix":"elasticloadbalancingv2","name":"ELBv2","cors":true},"emr":{"prefix":"elasticmapreduce","name":"EMR","cors":true},"es":{"name":"ES"},"elastictranscoder":{"name":"ElasticTranscoder","cors":true},"firehose":{"name":"Firehose","cors":true},"gamelift":{"name":"GameLift","cors":true},"glacier":{"name":"Glacier"},"health":{"name":"Health"},"iam":{"name":"IAM","cors":true},"importexport":{"name":"ImportExport"},"inspector":{"name":"Inspector","versions":["2015-08-18*"],"cors":true},"iot":{"name":"Iot","cors":true},"iotdata":{"prefix":"iot-data","name":"IotData","cors":true},"kinesis":{"name":"Kinesis","cors":true},"kinesisanalytics":{"name":"KinesisAnalytics"},"kms":{"name":"KMS","cors":true},"lambda":{"name":"Lambda","cors":true},"lexruntime":{"prefix":"runtime.lex","name":"LexRuntime","cors":true},"lightsail":{"name":"Lightsail"},"machinelearning":{"name":"MachineLearning","cors":true},"marketplacecommerceanalytics":{"name":"MarketplaceCommerceAnalytics","cors":true},"marketplacemetering":{"prefix":"meteringmarketplace","name":"MarketplaceMetering"},"mturk":{"prefix":"mturk-requester","name":"MTurk","cors":true},"mobileanalytics":{"name":"MobileAnalytics","cors":true},"opsworks":{"name":"OpsWorks","cors":true},"opsworkscm":{"name":"OpsWorksCM"},"organizations":{"name":"Organizations"},"pinpoint":{"name":"Pinpoint"},"polly":{"name":"Polly","cors":true},"rds":{"name":"RDS","versions":["2014-09-01*"],"cors":true},"redshift":{"name":"Redshift","cors":true},"rekognition":{"name":"Rekognition","cors":true},"resourcegroupstaggingapi":{"name":"ResourceGroupsTaggingAPI"},"route53":{"name":"Route53","cors":true},"route53domains":{"name":"Route53Domains","cors":true},"s3":{"name":"S3","dualstackAvailable":true,"cors":true},"s3control":{"name":"S3Control","dualstackAvailable":true,"xmlNoDefaultLists":true},"servicecatalog":{"name":"ServiceCatalog","cors":true},"ses":{"prefix":"email","name":"SES","cors":true},"shield":{"name":"Shield"},"simpledb":{"prefix":"sdb","name":"SimpleDB"},"sms":{"name":"SMS"},"snowball":{"name":"Snowball"},"sns":{"name":"SNS","cors":true},"sqs":{"name":"SQS","cors":true},"ssm":{"name":"SSM","cors":true},"storagegateway":{"name":"StorageGateway","cors":true},"stepfunctions":{"prefix":"states","name":"StepFunctions"},"sts":{"name":"STS","cors":true},"support":{"name":"Support"},"swf":{"name":"SWF"},"xray":{"name":"XRay","cors":true},"waf":{"name":"WAF","cors":true},"wafregional":{"prefix":"waf-regional","name":"WAFRegional"},"workdocs":{"name":"WorkDocs","cors":true},"workspaces":{"name":"WorkSpaces"},"codestar":{"name":"CodeStar"},"lexmodelbuildingservice":{"prefix":"lex-models","name":"LexModelBuildingService","cors":true},"marketplaceentitlementservice":{"prefix":"entitlement.marketplace","name":"MarketplaceEntitlementService"},"athena":{"name":"Athena","cors":true},"greengrass":{"name":"Greengrass"},"dax":{"name":"DAX"},"migrationhub":{"prefix":"AWSMigrationHub","name":"MigrationHub"},"cloudhsmv2":{"name":"CloudHSMV2","cors":true},"glue":{"name":"Glue"},"mobile":{"name":"Mobile"},"pricing":{"name":"Pricing","cors":true},"costexplorer":{"prefix":"ce","name":"CostExplorer","cors":true},"mediaconvert":{"name":"MediaConvert"},"medialive":{"name":"MediaLive"},"mediapackage":{"name":"MediaPackage"},"mediastore":{"name":"MediaStore"},"mediastoredata":{"prefix":"mediastore-data","name":"MediaStoreData","cors":true},"appsync":{"name":"AppSync"},"guardduty":{"name":"GuardDuty"},"mq":{"name":"MQ"},"comprehend":{"name":"Comprehend","cors":true},"iotjobsdataplane":{"prefix":"iot-jobs-data","name":"IoTJobsDataPlane"},"kinesisvideoarchivedmedia":{"prefix":"kinesis-video-archived-media","name":"KinesisVideoArchivedMedia","cors":true},"kinesisvideomedia":{"prefix":"kinesis-video-media","name":"KinesisVideoMedia","cors":true},"kinesisvideo":{"name":"KinesisVideo","cors":true},"sagemakerruntime":{"prefix":"runtime.sagemaker","name":"SageMakerRuntime"},"sagemaker":{"name":"SageMaker"},"translate":{"name":"Translate","cors":true},"resourcegroups":{"prefix":"resource-groups","name":"ResourceGroups","cors":true},"alexaforbusiness":{"name":"AlexaForBusiness"},"cloud9":{"name":"Cloud9"},"serverlessapplicationrepository":{"prefix":"serverlessrepo","name":"ServerlessApplicationRepository"},"servicediscovery":{"name":"ServiceDiscovery"},"workmail":{"name":"WorkMail"},"autoscalingplans":{"prefix":"autoscaling-plans","name":"AutoScalingPlans"},"transcribeservice":{"prefix":"transcribe","name":"TranscribeService"},"connect":{"name":"Connect","cors":true},"acmpca":{"prefix":"acm-pca","name":"ACMPCA"},"fms":{"name":"FMS"},"secretsmanager":{"name":"SecretsManager","cors":true},"iotanalytics":{"name":"IoTAnalytics","cors":true},"iot1clickdevicesservice":{"prefix":"iot1click-devices","name":"IoT1ClickDevicesService"},"iot1clickprojects":{"prefix":"iot1click-projects","name":"IoT1ClickProjects"},"pi":{"name":"PI"},"neptune":{"name":"Neptune"},"mediatailor":{"name":"MediaTailor"},"eks":{"name":"EKS"},"macie":{"name":"Macie"},"dlm":{"name":"DLM"},"signer":{"name":"Signer"},"chime":{"name":"Chime"},"pinpointemail":{"prefix":"pinpoint-email","name":"PinpointEmail"},"ram":{"name":"RAM"},"route53resolver":{"name":"Route53Resolver"},"pinpointsmsvoice":{"prefix":"sms-voice","name":"PinpointSMSVoice"},"quicksight":{"name":"QuickSight"},"rdsdataservice":{"prefix":"rds-data","name":"RDSDataService"},"amplify":{"name":"Amplify"},"datasync":{"name":"DataSync"},"robomaker":{"name":"RoboMaker"},"transfer":{"name":"Transfer"},"globalaccelerator":{"name":"GlobalAccelerator"},"comprehendmedical":{"name":"ComprehendMedical","cors":true},"kinesisanalyticsv2":{"name":"KinesisAnalyticsV2"},"mediaconnect":{"name":"MediaConnect"},"fsx":{"name":"FSx"},"securityhub":{"name":"SecurityHub"},"appmesh":{"name":"AppMesh","versions":["2018-10-01*"]},"licensemanager":{"prefix":"license-manager","name":"LicenseManager"},"kafka":{"name":"Kafka"},"apigatewaymanagementapi":{"name":"ApiGatewayManagementApi"},"apigatewayv2":{"name":"ApiGatewayV2"},"docdb":{"name":"DocDB"},"backup":{"name":"Backup"},"worklink":{"name":"WorkLink"},"textract":{"name":"Textract"},"managedblockchain":{"name":"ManagedBlockchain"},"mediapackagevod":{"prefix":"mediapackage-vod","name":"MediaPackageVod"},"groundstation":{"name":"GroundStation"},"iotthingsgraph":{"name":"IoTThingsGraph"},"iotevents":{"name":"IoTEvents"},"ioteventsdata":{"prefix":"iotevents-data","name":"IoTEventsData"},"personalize":{"name":"Personalize","cors":true},"personalizeevents":{"prefix":"personalize-events","name":"PersonalizeEvents","cors":true},"personalizeruntime":{"prefix":"personalize-runtime","name":"PersonalizeRuntime","cors":true},"applicationinsights":{"prefix":"application-insights","name":"ApplicationInsights"},"servicequotas":{"prefix":"service-quotas","name":"ServiceQuotas"},"ec2instanceconnect":{"prefix":"ec2-instance-connect","name":"EC2InstanceConnect"},"eventbridge":{"name":"EventBridge"},"lakeformation":{"name":"LakeFormation"},"forecastservice":{"prefix":"forecast","name":"ForecastService","cors":true},"forecastqueryservice":{"prefix":"forecastquery","name":"ForecastQueryService","cors":true},"qldb":{"name":"QLDB"},"qldbsession":{"prefix":"qldb-session","name":"QLDBSession"},"workmailmessageflow":{"name":"WorkMailMessageFlow"},"codestarnotifications":{"prefix":"codestar-notifications","name":"CodeStarNotifications"},"savingsplans":{"name":"SavingsPlans"},"sso":{"name":"SSO"},"ssooidc":{"prefix":"sso-oidc","name":"SSOOIDC"},"marketplacecatalog":{"prefix":"marketplace-catalog","name":"MarketplaceCatalog","cors":true},"dataexchange":{"name":"DataExchange"},"sesv2":{"name":"SESV2"},"migrationhubconfig":{"prefix":"migrationhub-config","name":"MigrationHubConfig"},"connectparticipant":{"name":"ConnectParticipant"},"appconfig":{"name":"AppConfig"},"iotsecuretunneling":{"name":"IoTSecureTunneling"},"wafv2":{"name":"WAFV2"},"elasticinference":{"prefix":"elastic-inference","name":"ElasticInference"},"imagebuilder":{"name":"Imagebuilder"},"schemas":{"name":"Schemas"},"accessanalyzer":{"name":"AccessAnalyzer"},"codegurureviewer":{"prefix":"codeguru-reviewer","name":"CodeGuruReviewer"},"codeguruprofiler":{"name":"CodeGuruProfiler"},"computeoptimizer":{"prefix":"compute-optimizer","name":"ComputeOptimizer"},"frauddetector":{"name":"FraudDetector"},"kendra":{"name":"Kendra"},"networkmanager":{"name":"NetworkManager"},"outposts":{"name":"Outposts"},"augmentedairuntime":{"prefix":"sagemaker-a2i-runtime","name":"AugmentedAIRuntime"},"ebs":{"name":"EBS"},"kinesisvideosignalingchannels":{"prefix":"kinesis-video-signaling","name":"KinesisVideoSignalingChannels","cors":true},"detective":{"name":"Detective"},"codestarconnections":{"prefix":"codestar-connections","name":"CodeStarconnections"},"synthetics":{"name":"Synthetics"},"iotsitewise":{"name":"IoTSiteWise"},"macie2":{"name":"Macie2"},"codeartifact":{"name":"CodeArtifact"},"honeycode":{"name":"Honeycode"},"ivs":{"name":"IVS"},"braket":{"name":"Braket"},"identitystore":{"name":"IdentityStore"},"appflow":{"name":"Appflow"},"redshiftdata":{"prefix":"redshift-data","name":"RedshiftData"},"ssoadmin":{"prefix":"sso-admin","name":"SSOAdmin"},"timestreamquery":{"prefix":"timestream-query","name":"TimestreamQuery"},"timestreamwrite":{"prefix":"timestream-write","name":"TimestreamWrite"},"s3outposts":{"name":"S3Outposts"},"databrew":{"name":"DataBrew"},"servicecatalogappregistry":{"prefix":"servicecatalog-appregistry","name":"ServiceCatalogAppRegistry"},"networkfirewall":{"prefix":"network-firewall","name":"NetworkFirewall"},"mwaa":{"name":"MWAA"},"amplifybackend":{"name":"AmplifyBackend"},"appintegrations":{"name":"AppIntegrations"},"connectcontactlens":{"prefix":"connect-contact-lens","name":"ConnectContactLens"},"devopsguru":{"prefix":"devops-guru","name":"DevOpsGuru"},"ecrpublic":{"prefix":"ecr-public","name":"ECRPUBLIC"},"lookoutvision":{"name":"LookoutVision"},"sagemakerfeaturestoreruntime":{"prefix":"sagemaker-featurestore-runtime","name":"SageMakerFeatureStoreRuntime"},"customerprofiles":{"prefix":"customer-profiles","name":"CustomerProfiles"},"auditmanager":{"name":"AuditManager"},"emrcontainers":{"prefix":"emr-containers","name":"EMRcontainers"},"healthlake":{"name":"HealthLake"},"sagemakeredge":{"prefix":"sagemaker-edge","name":"SagemakerEdge"},"amp":{"name":"Amp"},"greengrassv2":{"name":"GreengrassV2"},"iotdeviceadvisor":{"name":"IotDeviceAdvisor"},"iotfleethub":{"name":"IoTFleetHub"},"iotwireless":{"name":"IoTWireless"},"location":{"name":"Location","cors":true},"wellarchitected":{"name":"WellArchitected"},"lexmodelsv2":{"prefix":"models.lex.v2","name":"LexModelsV2"},"lexruntimev2":{"prefix":"runtime.lex.v2","name":"LexRuntimeV2","cors":true},"fis":{"name":"Fis"},"lookoutmetrics":{"name":"LookoutMetrics"},"mgn":{"name":"Mgn"},"lookoutequipment":{"name":"LookoutEquipment"},"nimble":{"name":"Nimble"},"finspace":{"name":"Finspace"},"finspacedata":{"prefix":"finspace-data","name":"Finspacedata"},"ssmcontacts":{"prefix":"ssm-contacts","name":"SSMContacts"},"ssmincidents":{"prefix":"ssm-incidents","name":"SSMIncidents"},"applicationcostprofiler":{"name":"ApplicationCostProfiler"},"apprunner":{"name":"AppRunner"},"proton":{"name":"Proton"},"route53recoverycluster":{"prefix":"route53-recovery-cluster","name":"Route53RecoveryCluster"},"route53recoverycontrolconfig":{"prefix":"route53-recovery-control-config","name":"Route53RecoveryControlConfig"},"route53recoveryreadiness":{"prefix":"route53-recovery-readiness","name":"Route53RecoveryReadiness"},"chimesdkidentity":{"prefix":"chime-sdk-identity","name":"ChimeSDKIdentity"},"chimesdkmessaging":{"prefix":"chime-sdk-messaging","name":"ChimeSDKMessaging"},"snowdevicemanagement":{"prefix":"snow-device-management","name":"SnowDeviceManagement"},"memorydb":{"name":"MemoryDB"},"opensearch":{"name":"OpenSearch"},"kafkaconnect":{"name":"KafkaConnect"},"voiceid":{"prefix":"voice-id","name":"VoiceID"},"wisdom":{"name":"Wisdom"},"account":{"name":"Account"},"cloudcontrol":{"name":"CloudControl"},"grafana":{"name":"Grafana"},"panorama":{"name":"Panorama"},"chimesdkmeetings":{"prefix":"chime-sdk-meetings","name":"ChimeSDKMeetings"},"resiliencehub":{"name":"Resiliencehub"},"migrationhubstrategy":{"name":"MigrationHubStrategy"},"appconfigdata":{"name":"AppConfigData"},"drs":{"name":"Drs"},"migrationhubrefactorspaces":{"prefix":"migration-hub-refactor-spaces","name":"MigrationHubRefactorSpaces"},"evidently":{"name":"Evidently"},"inspector2":{"name":"Inspector2"},"rbin":{"name":"Rbin"},"rum":{"name":"RUM"},"backupgateway":{"prefix":"backup-gateway","name":"BackupGateway"},"iottwinmaker":{"name":"IoTTwinMaker"},"workspacesweb":{"prefix":"workspaces-web","name":"WorkSpacesWeb"},"amplifyuibuilder":{"name":"AmplifyUIBuilder"},"keyspaces":{"name":"Keyspaces"},"billingconductor":{"name":"Billingconductor"},"gamesparks":{"name":"GameSparks"},"pinpointsmsvoicev2":{"prefix":"pinpoint-sms-voice-v2","name":"PinpointSMSVoiceV2"},"ivschat":{"name":"Ivschat"},"chimesdkmediapipelines":{"prefix":"chime-sdk-media-pipelines","name":"ChimeSDKMediaPipelines"},"emrserverless":{"prefix":"emr-serverless","name":"EMRServerless"},"m2":{"name":"M2"},"connectcampaigns":{"name":"ConnectCampaigns"},"redshiftserverless":{"prefix":"redshift-serverless","name":"RedshiftServerless"},"rolesanywhere":{"name":"RolesAnywhere"},"licensemanagerusersubscriptions":{"prefix":"license-manager-user-subscriptions","name":"LicenseManagerUserSubscriptions"},"backupstorage":{"name":"BackupStorage"},"privatenetworks":{"name":"PrivateNetworks"},"supportapp":{"prefix":"support-app","name":"SupportApp"},"controltower":{"name":"ControlTower"},"iotfleetwise":{"name":"IoTFleetWise"},"migrationhuborchestrator":{"name":"MigrationHubOrchestrator"},"connectcases":{"name":"ConnectCases"}}
|
|
1714
|
+
module.exports = {"acm":{"name":"ACM","cors":true},"apigateway":{"name":"APIGateway","cors":true},"applicationautoscaling":{"prefix":"application-autoscaling","name":"ApplicationAutoScaling","cors":true},"appstream":{"name":"AppStream"},"autoscaling":{"name":"AutoScaling","cors":true},"batch":{"name":"Batch"},"budgets":{"name":"Budgets"},"clouddirectory":{"name":"CloudDirectory","versions":["2016-05-10*"]},"cloudformation":{"name":"CloudFormation","cors":true},"cloudfront":{"name":"CloudFront","versions":["2013-05-12*","2013-11-11*","2014-05-31*","2014-10-21*","2014-11-06*","2015-04-17*","2015-07-27*","2015-09-17*","2016-01-13*","2016-01-28*","2016-08-01*","2016-08-20*","2016-09-07*","2016-09-29*","2016-11-25*","2017-03-25*","2017-10-30*","2018-06-18*","2018-11-05*","2019-03-26*"],"cors":true},"cloudhsm":{"name":"CloudHSM","cors":true},"cloudsearch":{"name":"CloudSearch"},"cloudsearchdomain":{"name":"CloudSearchDomain"},"cloudtrail":{"name":"CloudTrail","cors":true},"cloudwatch":{"prefix":"monitoring","name":"CloudWatch","cors":true},"cloudwatchevents":{"prefix":"events","name":"CloudWatchEvents","versions":["2014-02-03*"],"cors":true},"cloudwatchlogs":{"prefix":"logs","name":"CloudWatchLogs","cors":true},"codebuild":{"name":"CodeBuild","cors":true},"codecommit":{"name":"CodeCommit","cors":true},"codedeploy":{"name":"CodeDeploy","cors":true},"codepipeline":{"name":"CodePipeline","cors":true},"cognitoidentity":{"prefix":"cognito-identity","name":"CognitoIdentity","cors":true},"cognitoidentityserviceprovider":{"prefix":"cognito-idp","name":"CognitoIdentityServiceProvider","cors":true},"cognitosync":{"prefix":"cognito-sync","name":"CognitoSync","cors":true},"configservice":{"prefix":"config","name":"ConfigService","cors":true},"cur":{"name":"CUR","cors":true},"datapipeline":{"name":"DataPipeline"},"devicefarm":{"name":"DeviceFarm","cors":true},"directconnect":{"name":"DirectConnect","cors":true},"directoryservice":{"prefix":"ds","name":"DirectoryService"},"discovery":{"name":"Discovery"},"dms":{"name":"DMS"},"dynamodb":{"name":"DynamoDB","cors":true},"dynamodbstreams":{"prefix":"streams.dynamodb","name":"DynamoDBStreams","cors":true},"ec2":{"name":"EC2","versions":["2013-06-15*","2013-10-15*","2014-02-01*","2014-05-01*","2014-06-15*","2014-09-01*","2014-10-01*","2015-03-01*","2015-04-15*","2015-10-01*","2016-04-01*","2016-09-15*"],"cors":true},"ecr":{"name":"ECR","cors":true},"ecs":{"name":"ECS","cors":true},"efs":{"prefix":"elasticfilesystem","name":"EFS","cors":true},"elasticache":{"name":"ElastiCache","versions":["2012-11-15*","2014-03-24*","2014-07-15*","2014-09-30*"],"cors":true},"elasticbeanstalk":{"name":"ElasticBeanstalk","cors":true},"elb":{"prefix":"elasticloadbalancing","name":"ELB","cors":true},"elbv2":{"prefix":"elasticloadbalancingv2","name":"ELBv2","cors":true},"emr":{"prefix":"elasticmapreduce","name":"EMR","cors":true},"es":{"name":"ES"},"elastictranscoder":{"name":"ElasticTranscoder","cors":true},"firehose":{"name":"Firehose","cors":true},"gamelift":{"name":"GameLift","cors":true},"glacier":{"name":"Glacier"},"health":{"name":"Health"},"iam":{"name":"IAM","cors":true},"importexport":{"name":"ImportExport"},"inspector":{"name":"Inspector","versions":["2015-08-18*"],"cors":true},"iot":{"name":"Iot","cors":true},"iotdata":{"prefix":"iot-data","name":"IotData","cors":true},"kinesis":{"name":"Kinesis","cors":true},"kinesisanalytics":{"name":"KinesisAnalytics"},"kms":{"name":"KMS","cors":true},"lambda":{"name":"Lambda","cors":true},"lexruntime":{"prefix":"runtime.lex","name":"LexRuntime","cors":true},"lightsail":{"name":"Lightsail"},"machinelearning":{"name":"MachineLearning","cors":true},"marketplacecommerceanalytics":{"name":"MarketplaceCommerceAnalytics","cors":true},"marketplacemetering":{"prefix":"meteringmarketplace","name":"MarketplaceMetering"},"mturk":{"prefix":"mturk-requester","name":"MTurk","cors":true},"mobileanalytics":{"name":"MobileAnalytics","cors":true},"opsworks":{"name":"OpsWorks","cors":true},"opsworkscm":{"name":"OpsWorksCM"},"organizations":{"name":"Organizations"},"pinpoint":{"name":"Pinpoint"},"polly":{"name":"Polly","cors":true},"rds":{"name":"RDS","versions":["2014-09-01*"],"cors":true},"redshift":{"name":"Redshift","cors":true},"rekognition":{"name":"Rekognition","cors":true},"resourcegroupstaggingapi":{"name":"ResourceGroupsTaggingAPI"},"route53":{"name":"Route53","cors":true},"route53domains":{"name":"Route53Domains","cors":true},"s3":{"name":"S3","dualstackAvailable":true,"cors":true},"s3control":{"name":"S3Control","dualstackAvailable":true,"xmlNoDefaultLists":true},"servicecatalog":{"name":"ServiceCatalog","cors":true},"ses":{"prefix":"email","name":"SES","cors":true},"shield":{"name":"Shield"},"simpledb":{"prefix":"sdb","name":"SimpleDB"},"sms":{"name":"SMS"},"snowball":{"name":"Snowball"},"sns":{"name":"SNS","cors":true},"sqs":{"name":"SQS","cors":true},"ssm":{"name":"SSM","cors":true},"storagegateway":{"name":"StorageGateway","cors":true},"stepfunctions":{"prefix":"states","name":"StepFunctions"},"sts":{"name":"STS","cors":true},"support":{"name":"Support"},"swf":{"name":"SWF"},"xray":{"name":"XRay","cors":true},"waf":{"name":"WAF","cors":true},"wafregional":{"prefix":"waf-regional","name":"WAFRegional"},"workdocs":{"name":"WorkDocs","cors":true},"workspaces":{"name":"WorkSpaces"},"codestar":{"name":"CodeStar"},"lexmodelbuildingservice":{"prefix":"lex-models","name":"LexModelBuildingService","cors":true},"marketplaceentitlementservice":{"prefix":"entitlement.marketplace","name":"MarketplaceEntitlementService"},"athena":{"name":"Athena","cors":true},"greengrass":{"name":"Greengrass"},"dax":{"name":"DAX"},"migrationhub":{"prefix":"AWSMigrationHub","name":"MigrationHub"},"cloudhsmv2":{"name":"CloudHSMV2","cors":true},"glue":{"name":"Glue"},"mobile":{"name":"Mobile"},"pricing":{"name":"Pricing","cors":true},"costexplorer":{"prefix":"ce","name":"CostExplorer","cors":true},"mediaconvert":{"name":"MediaConvert"},"medialive":{"name":"MediaLive"},"mediapackage":{"name":"MediaPackage"},"mediastore":{"name":"MediaStore"},"mediastoredata":{"prefix":"mediastore-data","name":"MediaStoreData","cors":true},"appsync":{"name":"AppSync"},"guardduty":{"name":"GuardDuty"},"mq":{"name":"MQ"},"comprehend":{"name":"Comprehend","cors":true},"iotjobsdataplane":{"prefix":"iot-jobs-data","name":"IoTJobsDataPlane"},"kinesisvideoarchivedmedia":{"prefix":"kinesis-video-archived-media","name":"KinesisVideoArchivedMedia","cors":true},"kinesisvideomedia":{"prefix":"kinesis-video-media","name":"KinesisVideoMedia","cors":true},"kinesisvideo":{"name":"KinesisVideo","cors":true},"sagemakerruntime":{"prefix":"runtime.sagemaker","name":"SageMakerRuntime"},"sagemaker":{"name":"SageMaker"},"translate":{"name":"Translate","cors":true},"resourcegroups":{"prefix":"resource-groups","name":"ResourceGroups","cors":true},"alexaforbusiness":{"name":"AlexaForBusiness"},"cloud9":{"name":"Cloud9"},"serverlessapplicationrepository":{"prefix":"serverlessrepo","name":"ServerlessApplicationRepository"},"servicediscovery":{"name":"ServiceDiscovery"},"workmail":{"name":"WorkMail"},"autoscalingplans":{"prefix":"autoscaling-plans","name":"AutoScalingPlans"},"transcribeservice":{"prefix":"transcribe","name":"TranscribeService"},"connect":{"name":"Connect","cors":true},"acmpca":{"prefix":"acm-pca","name":"ACMPCA"},"fms":{"name":"FMS"},"secretsmanager":{"name":"SecretsManager","cors":true},"iotanalytics":{"name":"IoTAnalytics","cors":true},"iot1clickdevicesservice":{"prefix":"iot1click-devices","name":"IoT1ClickDevicesService"},"iot1clickprojects":{"prefix":"iot1click-projects","name":"IoT1ClickProjects"},"pi":{"name":"PI"},"neptune":{"name":"Neptune"},"mediatailor":{"name":"MediaTailor"},"eks":{"name":"EKS"},"macie":{"name":"Macie"},"dlm":{"name":"DLM"},"signer":{"name":"Signer"},"chime":{"name":"Chime"},"pinpointemail":{"prefix":"pinpoint-email","name":"PinpointEmail"},"ram":{"name":"RAM"},"route53resolver":{"name":"Route53Resolver"},"pinpointsmsvoice":{"prefix":"sms-voice","name":"PinpointSMSVoice"},"quicksight":{"name":"QuickSight"},"rdsdataservice":{"prefix":"rds-data","name":"RDSDataService"},"amplify":{"name":"Amplify"},"datasync":{"name":"DataSync"},"robomaker":{"name":"RoboMaker"},"transfer":{"name":"Transfer"},"globalaccelerator":{"name":"GlobalAccelerator"},"comprehendmedical":{"name":"ComprehendMedical","cors":true},"kinesisanalyticsv2":{"name":"KinesisAnalyticsV2"},"mediaconnect":{"name":"MediaConnect"},"fsx":{"name":"FSx"},"securityhub":{"name":"SecurityHub"},"appmesh":{"name":"AppMesh","versions":["2018-10-01*"]},"licensemanager":{"prefix":"license-manager","name":"LicenseManager"},"kafka":{"name":"Kafka"},"apigatewaymanagementapi":{"name":"ApiGatewayManagementApi"},"apigatewayv2":{"name":"ApiGatewayV2"},"docdb":{"name":"DocDB"},"backup":{"name":"Backup"},"worklink":{"name":"WorkLink"},"textract":{"name":"Textract"},"managedblockchain":{"name":"ManagedBlockchain"},"mediapackagevod":{"prefix":"mediapackage-vod","name":"MediaPackageVod"},"groundstation":{"name":"GroundStation"},"iotthingsgraph":{"name":"IoTThingsGraph"},"iotevents":{"name":"IoTEvents"},"ioteventsdata":{"prefix":"iotevents-data","name":"IoTEventsData"},"personalize":{"name":"Personalize","cors":true},"personalizeevents":{"prefix":"personalize-events","name":"PersonalizeEvents","cors":true},"personalizeruntime":{"prefix":"personalize-runtime","name":"PersonalizeRuntime","cors":true},"applicationinsights":{"prefix":"application-insights","name":"ApplicationInsights"},"servicequotas":{"prefix":"service-quotas","name":"ServiceQuotas"},"ec2instanceconnect":{"prefix":"ec2-instance-connect","name":"EC2InstanceConnect"},"eventbridge":{"name":"EventBridge"},"lakeformation":{"name":"LakeFormation"},"forecastservice":{"prefix":"forecast","name":"ForecastService","cors":true},"forecastqueryservice":{"prefix":"forecastquery","name":"ForecastQueryService","cors":true},"qldb":{"name":"QLDB"},"qldbsession":{"prefix":"qldb-session","name":"QLDBSession"},"workmailmessageflow":{"name":"WorkMailMessageFlow"},"codestarnotifications":{"prefix":"codestar-notifications","name":"CodeStarNotifications"},"savingsplans":{"name":"SavingsPlans"},"sso":{"name":"SSO"},"ssooidc":{"prefix":"sso-oidc","name":"SSOOIDC"},"marketplacecatalog":{"prefix":"marketplace-catalog","name":"MarketplaceCatalog","cors":true},"dataexchange":{"name":"DataExchange"},"sesv2":{"name":"SESV2"},"migrationhubconfig":{"prefix":"migrationhub-config","name":"MigrationHubConfig"},"connectparticipant":{"name":"ConnectParticipant"},"appconfig":{"name":"AppConfig"},"iotsecuretunneling":{"name":"IoTSecureTunneling"},"wafv2":{"name":"WAFV2"},"elasticinference":{"prefix":"elastic-inference","name":"ElasticInference"},"imagebuilder":{"name":"Imagebuilder"},"schemas":{"name":"Schemas"},"accessanalyzer":{"name":"AccessAnalyzer"},"codegurureviewer":{"prefix":"codeguru-reviewer","name":"CodeGuruReviewer"},"codeguruprofiler":{"name":"CodeGuruProfiler"},"computeoptimizer":{"prefix":"compute-optimizer","name":"ComputeOptimizer"},"frauddetector":{"name":"FraudDetector"},"kendra":{"name":"Kendra"},"networkmanager":{"name":"NetworkManager"},"outposts":{"name":"Outposts"},"augmentedairuntime":{"prefix":"sagemaker-a2i-runtime","name":"AugmentedAIRuntime"},"ebs":{"name":"EBS"},"kinesisvideosignalingchannels":{"prefix":"kinesis-video-signaling","name":"KinesisVideoSignalingChannels","cors":true},"detective":{"name":"Detective"},"codestarconnections":{"prefix":"codestar-connections","name":"CodeStarconnections"},"synthetics":{"name":"Synthetics"},"iotsitewise":{"name":"IoTSiteWise"},"macie2":{"name":"Macie2"},"codeartifact":{"name":"CodeArtifact"},"honeycode":{"name":"Honeycode"},"ivs":{"name":"IVS"},"braket":{"name":"Braket"},"identitystore":{"name":"IdentityStore"},"appflow":{"name":"Appflow"},"redshiftdata":{"prefix":"redshift-data","name":"RedshiftData"},"ssoadmin":{"prefix":"sso-admin","name":"SSOAdmin"},"timestreamquery":{"prefix":"timestream-query","name":"TimestreamQuery"},"timestreamwrite":{"prefix":"timestream-write","name":"TimestreamWrite"},"s3outposts":{"name":"S3Outposts"},"databrew":{"name":"DataBrew"},"servicecatalogappregistry":{"prefix":"servicecatalog-appregistry","name":"ServiceCatalogAppRegistry"},"networkfirewall":{"prefix":"network-firewall","name":"NetworkFirewall"},"mwaa":{"name":"MWAA"},"amplifybackend":{"name":"AmplifyBackend"},"appintegrations":{"name":"AppIntegrations"},"connectcontactlens":{"prefix":"connect-contact-lens","name":"ConnectContactLens"},"devopsguru":{"prefix":"devops-guru","name":"DevOpsGuru"},"ecrpublic":{"prefix":"ecr-public","name":"ECRPUBLIC"},"lookoutvision":{"name":"LookoutVision"},"sagemakerfeaturestoreruntime":{"prefix":"sagemaker-featurestore-runtime","name":"SageMakerFeatureStoreRuntime"},"customerprofiles":{"prefix":"customer-profiles","name":"CustomerProfiles"},"auditmanager":{"name":"AuditManager"},"emrcontainers":{"prefix":"emr-containers","name":"EMRcontainers"},"healthlake":{"name":"HealthLake"},"sagemakeredge":{"prefix":"sagemaker-edge","name":"SagemakerEdge"},"amp":{"name":"Amp"},"greengrassv2":{"name":"GreengrassV2"},"iotdeviceadvisor":{"name":"IotDeviceAdvisor"},"iotfleethub":{"name":"IoTFleetHub"},"iotwireless":{"name":"IoTWireless"},"location":{"name":"Location","cors":true},"wellarchitected":{"name":"WellArchitected"},"lexmodelsv2":{"prefix":"models.lex.v2","name":"LexModelsV2"},"lexruntimev2":{"prefix":"runtime.lex.v2","name":"LexRuntimeV2","cors":true},"fis":{"name":"Fis"},"lookoutmetrics":{"name":"LookoutMetrics"},"mgn":{"name":"Mgn"},"lookoutequipment":{"name":"LookoutEquipment"},"nimble":{"name":"Nimble"},"finspace":{"name":"Finspace"},"finspacedata":{"prefix":"finspace-data","name":"Finspacedata"},"ssmcontacts":{"prefix":"ssm-contacts","name":"SSMContacts"},"ssmincidents":{"prefix":"ssm-incidents","name":"SSMIncidents"},"applicationcostprofiler":{"name":"ApplicationCostProfiler"},"apprunner":{"name":"AppRunner"},"proton":{"name":"Proton"},"route53recoverycluster":{"prefix":"route53-recovery-cluster","name":"Route53RecoveryCluster"},"route53recoverycontrolconfig":{"prefix":"route53-recovery-control-config","name":"Route53RecoveryControlConfig"},"route53recoveryreadiness":{"prefix":"route53-recovery-readiness","name":"Route53RecoveryReadiness"},"chimesdkidentity":{"prefix":"chime-sdk-identity","name":"ChimeSDKIdentity"},"chimesdkmessaging":{"prefix":"chime-sdk-messaging","name":"ChimeSDKMessaging"},"snowdevicemanagement":{"prefix":"snow-device-management","name":"SnowDeviceManagement"},"memorydb":{"name":"MemoryDB"},"opensearch":{"name":"OpenSearch"},"kafkaconnect":{"name":"KafkaConnect"},"voiceid":{"prefix":"voice-id","name":"VoiceID"},"wisdom":{"name":"Wisdom"},"account":{"name":"Account"},"cloudcontrol":{"name":"CloudControl"},"grafana":{"name":"Grafana"},"panorama":{"name":"Panorama"},"chimesdkmeetings":{"prefix":"chime-sdk-meetings","name":"ChimeSDKMeetings"},"resiliencehub":{"name":"Resiliencehub"},"migrationhubstrategy":{"name":"MigrationHubStrategy"},"appconfigdata":{"name":"AppConfigData"},"drs":{"name":"Drs"},"migrationhubrefactorspaces":{"prefix":"migration-hub-refactor-spaces","name":"MigrationHubRefactorSpaces"},"evidently":{"name":"Evidently"},"inspector2":{"name":"Inspector2"},"rbin":{"name":"Rbin"},"rum":{"name":"RUM"},"backupgateway":{"prefix":"backup-gateway","name":"BackupGateway"},"iottwinmaker":{"name":"IoTTwinMaker"},"workspacesweb":{"prefix":"workspaces-web","name":"WorkSpacesWeb"},"amplifyuibuilder":{"name":"AmplifyUIBuilder"},"keyspaces":{"name":"Keyspaces"},"billingconductor":{"name":"Billingconductor"},"gamesparks":{"name":"GameSparks"},"pinpointsmsvoicev2":{"prefix":"pinpoint-sms-voice-v2","name":"PinpointSMSVoiceV2"},"ivschat":{"name":"Ivschat"},"chimesdkmediapipelines":{"prefix":"chime-sdk-media-pipelines","name":"ChimeSDKMediaPipelines"},"emrserverless":{"prefix":"emr-serverless","name":"EMRServerless"},"m2":{"name":"M2"},"connectcampaigns":{"name":"ConnectCampaigns"},"redshiftserverless":{"prefix":"redshift-serverless","name":"RedshiftServerless"},"rolesanywhere":{"name":"RolesAnywhere"},"licensemanagerusersubscriptions":{"prefix":"license-manager-user-subscriptions","name":"LicenseManagerUserSubscriptions"},"backupstorage":{"name":"BackupStorage"},"privatenetworks":{"name":"PrivateNetworks"},"supportapp":{"prefix":"support-app","name":"SupportApp"},"controltower":{"name":"ControlTower"},"iotfleetwise":{"name":"IoTFleetWise"},"migrationhuborchestrator":{"name":"MigrationHubOrchestrator"},"connectcases":{"name":"ConnectCases"},"resourceexplorer2":{"prefix":"resource-explorer-2","name":"ResourceExplorer2"}}
|
|
1715
1715
|
|
|
1716
1716
|
/***/ }),
|
|
1717
1717
|
/* 8 */
|