cdk-comprehend-s3olap 2.0.44 → 2.0.45
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/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/account-2021-02-01.min.json +101 -0
- package/node_modules/aws-sdk/apis/iotdeviceadvisor-2020-09-18.min.json +33 -12
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +50 -3
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +143 -119
- package/node_modules/aws-sdk/apis/transcribe-2017-10-26.min.json +2 -1
- package/node_modules/aws-sdk/clients/account.d.ts +104 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/iotdeviceadvisor.d.ts +49 -0
- package/node_modules/aws-sdk/clients/medialive.d.ts +37 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +52 -2
- package/node_modules/aws-sdk/clients/transcribeservice.d.ts +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +6 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +146 -122
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +27 -27
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -12,32 +12,49 @@ declare class Account extends Service {
|
|
12
12
|
constructor(options?: Account.Types.ClientConfiguration)
|
13
13
|
config: Config & Account.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Deletes the specified alternate contact from an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts.
|
15
|
+
* Deletes the specified alternate contact from an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
|
16
16
|
*/
|
17
17
|
deleteAlternateContact(params: Account.Types.DeleteAlternateContactRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
18
18
|
/**
|
19
|
-
* Deletes the specified alternate contact from an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts.
|
19
|
+
* Deletes the specified alternate contact from an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
|
20
20
|
*/
|
21
21
|
deleteAlternateContact(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
22
22
|
/**
|
23
|
-
* Retrieves the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts.
|
23
|
+
* Retrieves the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
|
24
24
|
*/
|
25
25
|
getAlternateContact(params: Account.Types.GetAlternateContactRequest, callback?: (err: AWSError, data: Account.Types.GetAlternateContactResponse) => void): Request<Account.Types.GetAlternateContactResponse, AWSError>;
|
26
26
|
/**
|
27
|
-
* Retrieves the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts.
|
27
|
+
* Retrieves the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
|
28
28
|
*/
|
29
29
|
getAlternateContact(callback?: (err: AWSError, data: Account.Types.GetAlternateContactResponse) => void): Request<Account.Types.GetAlternateContactResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
*
|
31
|
+
* Retrieves the primary contact information of an Amazon Web Services account. For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
|
32
|
+
*/
|
33
|
+
getContactInformation(params: Account.Types.GetContactInformationRequest, callback?: (err: AWSError, data: Account.Types.GetContactInformationResponse) => void): Request<Account.Types.GetContactInformationResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Retrieves the primary contact information of an Amazon Web Services account. For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
|
36
|
+
*/
|
37
|
+
getContactInformation(callback?: (err: AWSError, data: Account.Types.GetContactInformationResponse) => void): Request<Account.Types.GetContactInformationResponse, AWSError>;
|
38
|
+
/**
|
39
|
+
* Modifies the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
|
32
40
|
*/
|
33
41
|
putAlternateContact(params: Account.Types.PutAlternateContactRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
34
42
|
/**
|
35
|
-
* Modifies the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts.
|
43
|
+
* Modifies the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
|
36
44
|
*/
|
37
45
|
putAlternateContact(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
46
|
+
/**
|
47
|
+
* Updates the primary contact information of an Amazon Web Services account. For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
|
48
|
+
*/
|
49
|
+
putContactInformation(params: Account.Types.PutContactInformationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
50
|
+
/**
|
51
|
+
* Updates the primary contact information of an Amazon Web Services account. For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
|
52
|
+
*/
|
53
|
+
putContactInformation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
38
54
|
}
|
39
55
|
declare namespace Account {
|
40
56
|
export type AccountId = string;
|
57
|
+
export type AddressLine = string;
|
41
58
|
export interface AlternateContact {
|
42
59
|
/**
|
43
60
|
* The type of alternate contact.
|
@@ -61,6 +78,60 @@ declare namespace Account {
|
|
61
78
|
Title?: Title;
|
62
79
|
}
|
63
80
|
export type AlternateContactType = "BILLING"|"OPERATIONS"|"SECURITY"|string;
|
81
|
+
export type City = string;
|
82
|
+
export type CompanyName = string;
|
83
|
+
export interface ContactInformation {
|
84
|
+
/**
|
85
|
+
* The first line of the primary contact address.
|
86
|
+
*/
|
87
|
+
AddressLine1: AddressLine;
|
88
|
+
/**
|
89
|
+
* The second line of the primary contact address, if any.
|
90
|
+
*/
|
91
|
+
AddressLine2?: AddressLine;
|
92
|
+
/**
|
93
|
+
* The third line of the primary contact address, if any.
|
94
|
+
*/
|
95
|
+
AddressLine3?: AddressLine;
|
96
|
+
/**
|
97
|
+
* The city of the primary contact address.
|
98
|
+
*/
|
99
|
+
City: City;
|
100
|
+
/**
|
101
|
+
* The name of the company associated with the primary contact information, if any.
|
102
|
+
*/
|
103
|
+
CompanyName?: CompanyName;
|
104
|
+
/**
|
105
|
+
* The ISO-3166 two-letter country code for the primary contact address.
|
106
|
+
*/
|
107
|
+
CountryCode: CountryCode;
|
108
|
+
/**
|
109
|
+
* The district or county of the primary contact address, if any.
|
110
|
+
*/
|
111
|
+
DistrictOrCounty?: DistrictOrCounty;
|
112
|
+
/**
|
113
|
+
* The full name of the primary contact address.
|
114
|
+
*/
|
115
|
+
FullName: FullName;
|
116
|
+
/**
|
117
|
+
* The phone number of the primary contact information. The number will be validated and, in some countries, checked for activation.
|
118
|
+
*/
|
119
|
+
PhoneNumber: ContactInformationPhoneNumber;
|
120
|
+
/**
|
121
|
+
* The postal code of the primary contact address.
|
122
|
+
*/
|
123
|
+
PostalCode: PostalCode;
|
124
|
+
/**
|
125
|
+
* The state or region of the primary contact address. This field is required in selected countries.
|
126
|
+
*/
|
127
|
+
StateOrRegion?: StateOrRegion;
|
128
|
+
/**
|
129
|
+
* The URL of the website associated with the primary contact information, if any.
|
130
|
+
*/
|
131
|
+
WebsiteUrl?: WebsiteUrl;
|
132
|
+
}
|
133
|
+
export type ContactInformationPhoneNumber = string;
|
134
|
+
export type CountryCode = string;
|
64
135
|
export interface DeleteAlternateContactRequest {
|
65
136
|
/**
|
66
137
|
* Specifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId; it must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, then don't specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
|
@@ -71,7 +142,9 @@ declare namespace Account {
|
|
71
142
|
*/
|
72
143
|
AlternateContactType: AlternateContactType;
|
73
144
|
}
|
145
|
+
export type DistrictOrCounty = string;
|
74
146
|
export type EmailAddress = string;
|
147
|
+
export type FullName = string;
|
75
148
|
export interface GetAlternateContactRequest {
|
76
149
|
/**
|
77
150
|
* Specifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId; it must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, then don't specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
|
@@ -88,8 +161,21 @@ declare namespace Account {
|
|
88
161
|
*/
|
89
162
|
AlternateContact?: AlternateContact;
|
90
163
|
}
|
164
|
+
export interface GetContactInformationRequest {
|
165
|
+
/**
|
166
|
+
* Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
|
167
|
+
*/
|
168
|
+
AccountId?: AccountId;
|
169
|
+
}
|
170
|
+
export interface GetContactInformationResponse {
|
171
|
+
/**
|
172
|
+
* Contains the details of the primary contact information associated with an Amazon Web Services account.
|
173
|
+
*/
|
174
|
+
ContactInformation?: ContactInformation;
|
175
|
+
}
|
91
176
|
export type Name = string;
|
92
177
|
export type PhoneNumber = string;
|
178
|
+
export type PostalCode = string;
|
93
179
|
export interface PutAlternateContactRequest {
|
94
180
|
/**
|
95
181
|
* Specifies the 12 digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you do not specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account, and the specified account ID must be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId; it must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, then don't specify this parameter, and call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
|
@@ -116,7 +202,19 @@ declare namespace Account {
|
|
116
202
|
*/
|
117
203
|
Title: Title;
|
118
204
|
}
|
205
|
+
export interface PutContactInformationRequest {
|
206
|
+
/**
|
207
|
+
* Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
|
208
|
+
*/
|
209
|
+
AccountId?: AccountId;
|
210
|
+
/**
|
211
|
+
* Contains the details of the primary contact information associated with an Amazon Web Services account.
|
212
|
+
*/
|
213
|
+
ContactInformation: ContactInformation;
|
214
|
+
}
|
215
|
+
export type StateOrRegion = string;
|
119
216
|
export type Title = string;
|
217
|
+
export type WebsiteUrl = string;
|
120
218
|
/**
|
121
219
|
* 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.
|
122
220
|
*/
|
@@ -21639,7 +21639,7 @@ declare namespace EC2 {
|
|
21639
21639
|
*/
|
21640
21640
|
IncludeAllTagsOfInstance?: Boolean;
|
21641
21641
|
}
|
21642
|
-
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|string;
|
21642
|
+
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|"mac2.metal"|string;
|
21643
21643
|
export type InstanceTypeHypervisor = "nitro"|"xen"|string;
|
21644
21644
|
export interface InstanceTypeInfo {
|
21645
21645
|
/**
|
@@ -325,6 +325,7 @@ declare namespace IotDeviceAdvisor {
|
|
325
325
|
}
|
326
326
|
export type GroupResultList = GroupResult[];
|
327
327
|
export type IntendedForQualificationBoolean = boolean;
|
328
|
+
export type IsLongDurationTestBoolean = boolean;
|
328
329
|
export interface ListSuiteDefinitionsRequest {
|
329
330
|
/**
|
330
331
|
* The maximum number of results to return at once.
|
@@ -388,6 +389,7 @@ declare namespace IotDeviceAdvisor {
|
|
388
389
|
export type LogUrl = string;
|
389
390
|
export type MaxResults = number;
|
390
391
|
export type ParallelRun = boolean;
|
392
|
+
export type Protocol = "MqttV3_1_1"|"MqttV5"|string;
|
391
393
|
export type QualificationReportDownloadUrl = string;
|
392
394
|
export type RootGroup = string;
|
393
395
|
export type SelectedTestList = UUID[];
|
@@ -451,6 +453,10 @@ declare namespace IotDeviceAdvisor {
|
|
451
453
|
* Gets the tests intended for qualification in a suite.
|
452
454
|
*/
|
453
455
|
intendedForQualification?: IntendedForQualificationBoolean;
|
456
|
+
/**
|
457
|
+
* Verifies if the test suite is a long duration test.
|
458
|
+
*/
|
459
|
+
isLongDurationTest?: IsLongDurationTestBoolean;
|
454
460
|
/**
|
455
461
|
* Gets test suite root group.
|
456
462
|
*/
|
@@ -459,6 +465,10 @@ declare namespace IotDeviceAdvisor {
|
|
459
465
|
* Gets the device permission ARN.
|
460
466
|
*/
|
461
467
|
devicePermissionRoleArn?: AmazonResourceName;
|
468
|
+
/**
|
469
|
+
* Gets the MQTT protocol that is configured in the suite definition.
|
470
|
+
*/
|
471
|
+
protocol?: Protocol;
|
462
472
|
}
|
463
473
|
export interface SuiteDefinitionInformation {
|
464
474
|
/**
|
@@ -477,6 +487,14 @@ declare namespace IotDeviceAdvisor {
|
|
477
487
|
* Specifies if the test suite is intended for qualification.
|
478
488
|
*/
|
479
489
|
intendedForQualification?: IntendedForQualificationBoolean;
|
490
|
+
/**
|
491
|
+
* Verifies if the test suite is a long duration test.
|
492
|
+
*/
|
493
|
+
isLongDurationTest?: IsLongDurationTestBoolean;
|
494
|
+
/**
|
495
|
+
* Gets the MQTT protocol that is configured in the suite definition.
|
496
|
+
*/
|
497
|
+
protocol?: Protocol;
|
480
498
|
/**
|
481
499
|
* Date (in Unix epoch time) when the test suite was created.
|
482
500
|
*/
|
@@ -544,6 +562,7 @@ declare namespace IotDeviceAdvisor {
|
|
544
562
|
export type SuiteRunResultCount = number;
|
545
563
|
export type SuiteRunStatus = "PASS"|"FAIL"|"CANCELED"|"PENDING"|"RUNNING"|"STOPPING"|"STOPPED"|"PASS_WITH_WARNINGS"|"ERROR"|string;
|
546
564
|
export type SuiteRunsList = SuiteRunInformation[];
|
565
|
+
export type SystemMessage = string;
|
547
566
|
export type TagKeyList = String128[];
|
548
567
|
export type TagMap = {[key: string]: String256};
|
549
568
|
export interface TagResourceRequest {
|
@@ -596,8 +615,38 @@ declare namespace IotDeviceAdvisor {
|
|
596
615
|
* Provides test case run failure result.
|
597
616
|
*/
|
598
617
|
failure?: Failure;
|
618
|
+
/**
|
619
|
+
* Provides the test scenarios for the test case run.
|
620
|
+
*/
|
621
|
+
testScenarios?: TestCaseScenariosList;
|
599
622
|
}
|
600
623
|
export type TestCaseRuns = TestCaseRun[];
|
624
|
+
export interface TestCaseScenario {
|
625
|
+
/**
|
626
|
+
* Provides test case scenario ID.
|
627
|
+
*/
|
628
|
+
testCaseScenarioId?: TestCaseScenarioId;
|
629
|
+
/**
|
630
|
+
* Provides test case scenario type. Type is one of the following: Advanced Basic
|
631
|
+
*/
|
632
|
+
testCaseScenarioType?: TestCaseScenarioType;
|
633
|
+
/**
|
634
|
+
* Provides the test case scenario status. Status is one of the following: PASS: Test passed. FAIL: Test failed. PENDING: Test has not started running but is scheduled. RUNNING: Test is running. STOPPING: Test is performing cleanup steps. You will see this status only if you stop a suite run. STOPPED Test is stopped. You will see this status only if you stop a suite run. PASS_WITH_WARNINGS: Test passed with warnings. ERORR: Test faced an error when running due to an internal issue.
|
635
|
+
*/
|
636
|
+
status?: TestCaseScenarioStatus;
|
637
|
+
/**
|
638
|
+
* Provides test case scenario failure result.
|
639
|
+
*/
|
640
|
+
failure?: Failure;
|
641
|
+
/**
|
642
|
+
*
|
643
|
+
*/
|
644
|
+
systemMessage?: SystemMessage;
|
645
|
+
}
|
646
|
+
export type TestCaseScenarioId = string;
|
647
|
+
export type TestCaseScenarioStatus = "PASS"|"FAIL"|"CANCELED"|"PENDING"|"RUNNING"|"STOPPING"|"STOPPED"|"PASS_WITH_WARNINGS"|"ERROR"|string;
|
648
|
+
export type TestCaseScenarioType = "Advanced"|"Basic"|string;
|
649
|
+
export type TestCaseScenariosList = TestCaseScenario[];
|
601
650
|
export interface TestResult {
|
602
651
|
/**
|
603
652
|
* Show each group of test results.
|
@@ -357,6 +357,14 @@ declare class MediaLive extends Service {
|
|
357
357
|
* Purchase an offering and create a reservation.
|
358
358
|
*/
|
359
359
|
purchaseOffering(callback?: (err: AWSError, data: MediaLive.Types.PurchaseOfferingResponse) => void): Request<MediaLive.Types.PurchaseOfferingResponse, AWSError>;
|
360
|
+
/**
|
361
|
+
* Send a reboot command to the specified input device. The device will begin rebooting within a few seconds of sending the command. When the reboot is complete, the device’s connection status will change to connected.
|
362
|
+
*/
|
363
|
+
rebootInputDevice(params: MediaLive.Types.RebootInputDeviceRequest, callback?: (err: AWSError, data: MediaLive.Types.RebootInputDeviceResponse) => void): Request<MediaLive.Types.RebootInputDeviceResponse, AWSError>;
|
364
|
+
/**
|
365
|
+
* Send a reboot command to the specified input device. The device will begin rebooting within a few seconds of sending the command. When the reboot is complete, the device’s connection status will change to connected.
|
366
|
+
*/
|
367
|
+
rebootInputDevice(callback?: (err: AWSError, data: MediaLive.Types.RebootInputDeviceResponse) => void): Request<MediaLive.Types.RebootInputDeviceResponse, AWSError>;
|
360
368
|
/**
|
361
369
|
* Reject the transfer of the specified input device to your AWS account.
|
362
370
|
*/
|
@@ -373,6 +381,14 @@ declare class MediaLive extends Service {
|
|
373
381
|
* Starts an existing channel
|
374
382
|
*/
|
375
383
|
startChannel(callback?: (err: AWSError, data: MediaLive.Types.StartChannelResponse) => void): Request<MediaLive.Types.StartChannelResponse, AWSError>;
|
384
|
+
/**
|
385
|
+
* Start a maintenance window for the specified input device. Starting a maintenance window will give the device up to two hours to install software. If the device was streaming prior to the maintenance, it will resume streaming when the software is fully installed. Devices automatically install updates while they are powered on and their MediaLive channels are stopped. A maintenance window allows you to update a device without having to stop MediaLive channels that use the device. The device must remain powered on and connected to the internet for the duration of the maintenance.
|
386
|
+
*/
|
387
|
+
startInputDeviceMaintenanceWindow(params: MediaLive.Types.StartInputDeviceMaintenanceWindowRequest, callback?: (err: AWSError, data: MediaLive.Types.StartInputDeviceMaintenanceWindowResponse) => void): Request<MediaLive.Types.StartInputDeviceMaintenanceWindowResponse, AWSError>;
|
388
|
+
/**
|
389
|
+
* Start a maintenance window for the specified input device. Starting a maintenance window will give the device up to two hours to install software. If the device was streaming prior to the maintenance, it will resume streaming when the software is fully installed. Devices automatically install updates while they are powered on and their MediaLive channels are stopped. A maintenance window allows you to update a device without having to stop MediaLive channels that use the device. The device must remain powered on and connected to the internet for the duration of the maintenance.
|
390
|
+
*/
|
391
|
+
startInputDeviceMaintenanceWindow(callback?: (err: AWSError, data: MediaLive.Types.StartInputDeviceMaintenanceWindowResponse) => void): Request<MediaLive.Types.StartInputDeviceMaintenanceWindowResponse, AWSError>;
|
376
392
|
/**
|
377
393
|
* Start (run) the multiplex. Starting the multiplex does not start the channels. You must explicitly start each channel.
|
378
394
|
*/
|
@@ -5590,6 +5606,19 @@ When this field is defined, ConstantBitrate must be undefined.
|
|
5590
5606
|
}
|
5591
5607
|
export interface RawSettings {
|
5592
5608
|
}
|
5609
|
+
export type RebootInputDeviceForce = "NO"|"YES"|string;
|
5610
|
+
export interface RebootInputDeviceRequest {
|
5611
|
+
/**
|
5612
|
+
* Force a reboot of an input device. If the device is streaming, it will stop streaming and begin rebooting within a few seconds of sending the command. If the device was streaming prior to the reboot, the device will resume streaming when the reboot completes.
|
5613
|
+
*/
|
5614
|
+
Force?: RebootInputDeviceForce;
|
5615
|
+
/**
|
5616
|
+
* The unique ID of the input device to reboot. For example, hd-123456789abcdef.
|
5617
|
+
*/
|
5618
|
+
InputDeviceId: __string;
|
5619
|
+
}
|
5620
|
+
export interface RebootInputDeviceResponse {
|
5621
|
+
}
|
5593
5622
|
export interface Rec601Settings {
|
5594
5623
|
}
|
5595
5624
|
export interface Rec709Settings {
|
@@ -6145,6 +6174,14 @@ one destination per packager.
|
|
6145
6174
|
*/
|
6146
6175
|
Vpc?: VpcOutputSettingsDescription;
|
6147
6176
|
}
|
6177
|
+
export interface StartInputDeviceMaintenanceWindowRequest {
|
6178
|
+
/**
|
6179
|
+
* The unique ID of the input device to start a maintenance window for. For example, hd-123456789abcdef.
|
6180
|
+
*/
|
6181
|
+
InputDeviceId: __string;
|
6182
|
+
}
|
6183
|
+
export interface StartInputDeviceMaintenanceWindowResponse {
|
6184
|
+
}
|
6148
6185
|
export interface StartMultiplexRequest {
|
6149
6186
|
/**
|
6150
6187
|
* The ID of the multiplex.
|
@@ -717,6 +717,14 @@ declare class RDS extends Service {
|
|
717
717
|
* Lists all tags on an Amazon RDS resource. For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
|
718
718
|
*/
|
719
719
|
listTagsForResource(callback?: (err: AWSError, data: RDS.Types.TagListMessage) => void): Request<RDS.Types.TagListMessage, AWSError>;
|
720
|
+
/**
|
721
|
+
* Changes the audit policy state of a database activity stream to either locked (default) or unlocked. A locked policy is read-only, whereas an unlocked policy is read/write. If your activity stream is started and locked, you can unlock it, customize your audit policy, and then lock your activity stream. Restarting the activity stream isn't required. For more information, see Modifying a database activity stream in the Amazon RDS User Guide. This operation is supported for RDS for Oracle only.
|
722
|
+
*/
|
723
|
+
modifyActivityStream(params: RDS.Types.ModifyActivityStreamRequest, callback?: (err: AWSError, data: RDS.Types.ModifyActivityStreamResponse) => void): Request<RDS.Types.ModifyActivityStreamResponse, AWSError>;
|
724
|
+
/**
|
725
|
+
* Changes the audit policy state of a database activity stream to either locked (default) or unlocked. A locked policy is read-only, whereas an unlocked policy is read/write. If your activity stream is started and locked, you can unlock it, customize your audit policy, and then lock your activity stream. Restarting the activity stream isn't required. For more information, see Modifying a database activity stream in the Amazon RDS User Guide. This operation is supported for RDS for Oracle only.
|
726
|
+
*/
|
727
|
+
modifyActivityStream(callback?: (err: AWSError, data: RDS.Types.ModifyActivityStreamResponse) => void): Request<RDS.Types.ModifyActivityStreamResponse, AWSError>;
|
720
728
|
/**
|
721
729
|
* Override the system-default Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificate for Amazon RDS for new DB instances, or remove the override. By using this operation, you can specify an RDS-approved SSL/TLS certificate for new DB instances that is different from the default certificate provided by RDS. You can also use this operation to remove the override, so that new DB instances use the default certificate provided by RDS. You might need to override the default certificate in the following situations: You already migrated your applications to support the latest certificate authority (CA) certificate, but the new CA certificate is not yet the RDS default CA certificate for the specified Amazon Web Services Region. RDS has already moved to a new default CA certificate for the specified Amazon Web Services Region, but you are still in the process of supporting the new CA certificate. In this case, you temporarily need additional time to finish your application changes. For more information about rotating your SSL/TLS certificate for RDS DB engines, see Rotating Your SSL/TLS Certificate in the Amazon RDS User Guide. For more information about rotating your SSL/TLS certificate for Aurora DB engines, see Rotating Your SSL/TLS Certificate in the Amazon Aurora User Guide.
|
722
730
|
*/
|
@@ -1185,6 +1193,7 @@ declare namespace RDS {
|
|
1185
1193
|
export type AccountQuotaList = AccountQuota[];
|
1186
1194
|
export type ActivityStreamMode = "sync"|"async"|string;
|
1187
1195
|
export type ActivityStreamModeList = String[];
|
1196
|
+
export type ActivityStreamPolicyStatus = "locked"|"unlocked"|"locking-policy"|"unlocking-policy"|string;
|
1188
1197
|
export type ActivityStreamStatus = "stopped"|"starting"|"started"|"stopping"|string;
|
1189
1198
|
export interface AddRoleToDBClusterMessage {
|
1190
1199
|
/**
|
@@ -1256,6 +1265,7 @@ declare namespace RDS {
|
|
1256
1265
|
ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
|
1257
1266
|
}
|
1258
1267
|
export type AttributeValueList = String[];
|
1268
|
+
export type AuditPolicyState = "locked"|"unlocked"|string;
|
1259
1269
|
export type AuthScheme = "SECRETS"|string;
|
1260
1270
|
export interface AuthorizeDBSecurityGroupIngressMessage {
|
1261
1271
|
/**
|
@@ -2272,7 +2282,7 @@ declare namespace RDS {
|
|
2272
2282
|
*/
|
2273
2283
|
DBProxyName: String;
|
2274
2284
|
/**
|
2275
|
-
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL
|
2285
|
+
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. For Aurora MySQL and RDS for MySQL databases, specify MYSQL. For Aurora PostgreSQL and RDS for PostgreSQL databases, specify POSTGRESQL.
|
2276
2286
|
*/
|
2277
2287
|
EngineFamily: EngineFamily;
|
2278
2288
|
/**
|
@@ -3468,6 +3478,10 @@ declare namespace RDS {
|
|
3468
3478
|
* The network type of the DB instance. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB instance. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide and Working with a DB instance in a VPC in the Amazon Aurora User Guide.
|
3469
3479
|
*/
|
3470
3480
|
NetworkType?: String;
|
3481
|
+
/**
|
3482
|
+
* The status of the policy state of the activity stream.
|
3483
|
+
*/
|
3484
|
+
ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus;
|
3471
3485
|
}
|
3472
3486
|
export interface DBInstanceAutomatedBackup {
|
3473
3487
|
/**
|
@@ -3712,7 +3726,7 @@ declare namespace RDS {
|
|
3712
3726
|
*/
|
3713
3727
|
Status?: DBProxyStatus;
|
3714
3728
|
/**
|
3715
|
-
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. MYSQL supports Aurora MySQL
|
3729
|
+
* The kinds of databases that the proxy can connect to. This value determines which database network protocol the proxy recognizes when it interprets network traffic to and from the database. MYSQL supports Aurora MySQL and RDS for MySQL databases. POSTGRESQL supports Aurora PostgreSQL and RDS for PostgreSQL databases.
|
3716
3730
|
*/
|
3717
3731
|
EngineFamily?: String;
|
3718
3732
|
/**
|
@@ -5694,6 +5708,42 @@ declare namespace RDS {
|
|
5694
5708
|
MinimumEngineVersion?: String;
|
5695
5709
|
}
|
5696
5710
|
export type MinimumEngineVersionPerAllowedValueList = MinimumEngineVersionPerAllowedValue[];
|
5711
|
+
export interface ModifyActivityStreamRequest {
|
5712
|
+
/**
|
5713
|
+
* The Amazon Resource Name (ARN) of the RDS for Oracle DB instance, for example, arn:aws:rds:us-east-1:12345667890:instance:my-orcl-db.
|
5714
|
+
*/
|
5715
|
+
ResourceArn?: String;
|
5716
|
+
/**
|
5717
|
+
* The audit policy state. When a policy is unlocked, it is read/write. When it is locked, it is read-only. You can edit your audit policy only when the activity stream is unlocked or stopped.
|
5718
|
+
*/
|
5719
|
+
AuditPolicyState?: AuditPolicyState;
|
5720
|
+
}
|
5721
|
+
export interface ModifyActivityStreamResponse {
|
5722
|
+
/**
|
5723
|
+
* The Amazon Web Services KMS key identifier for encryption of messages in the database activity stream.
|
5724
|
+
*/
|
5725
|
+
KmsKeyId?: String;
|
5726
|
+
/**
|
5727
|
+
* The name of the Amazon Kinesis data stream to be used for the database activity stream.
|
5728
|
+
*/
|
5729
|
+
KinesisStreamName?: String;
|
5730
|
+
/**
|
5731
|
+
* The status of the modification to the database activity stream.
|
5732
|
+
*/
|
5733
|
+
Status?: ActivityStreamStatus;
|
5734
|
+
/**
|
5735
|
+
* The mode of the database activity stream.
|
5736
|
+
*/
|
5737
|
+
Mode?: ActivityStreamMode;
|
5738
|
+
/**
|
5739
|
+
* Indicates whether engine-native audit fields are included in the database activity stream.
|
5740
|
+
*/
|
5741
|
+
EngineNativeAuditFieldsIncluded?: BooleanOptional;
|
5742
|
+
/**
|
5743
|
+
* The status of the modification to the policy state of the database activity stream.
|
5744
|
+
*/
|
5745
|
+
PolicyStatus?: ActivityStreamPolicyStatus;
|
5746
|
+
}
|
5697
5747
|
export interface ModifyCertificatesMessage {
|
5698
5748
|
/**
|
5699
5749
|
* The new default certificate identifier to override the current one with. To determine the valid values, use the describe-certificates CLI command or the DescribeCertificates API operation.
|
@@ -941,7 +941,7 @@ declare namespace TranscribeService {
|
|
941
941
|
}
|
942
942
|
export type KMSEncryptionContextMap = {[key: string]: NonEmptyString};
|
943
943
|
export type KMSKeyId = string;
|
944
|
-
export type LanguageCode = "af-ZA"|"ar-AE"|"ar-SA"|"
|
944
|
+
export type LanguageCode = "af-ZA"|"ar-AE"|"ar-SA"|"da-DK"|"de-CH"|"de-DE"|"en-AB"|"en-AU"|"en-GB"|"en-IE"|"en-IN"|"en-US"|"en-WL"|"es-ES"|"es-US"|"fa-IR"|"fr-CA"|"fr-FR"|"he-IL"|"hi-IN"|"id-ID"|"it-IT"|"ja-JP"|"ko-KR"|"ms-MY"|"nl-NL"|"pt-BR"|"pt-PT"|"ru-RU"|"ta-IN"|"te-IN"|"tr-TR"|"zh-CN"|"zh-TW"|"th-TH"|"en-ZA"|"en-NZ"|string;
|
945
945
|
export interface LanguageCodeItem {
|
946
946
|
/**
|
947
947
|
* Provides the language code for each language identified in your media.
|
@@ -2015,7 +2015,7 @@ declare namespace TranscribeService {
|
|
2015
2015
|
/**
|
2016
2016
|
* The Amazon S3 location of the text file that contains your custom medical vocabulary. The URI must be located in the same Amazon Web Services Region as the resource you're calling. Here's an example URI path: s3://DOC-EXAMPLE-BUCKET/my-vocab-file.txt
|
2017
2017
|
*/
|
2018
|
-
VocabularyFileUri
|
2018
|
+
VocabularyFileUri: Uri;
|
2019
2019
|
}
|
2020
2020
|
export interface UpdateMedicalVocabularyResponse {
|
2021
2021
|
/**
|