aws-sdk 2.566.0 → 2.570.0
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/CHANGELOG.md +20 -1
- package/README.md +1 -1
- package/apis/ce-2017-10-25.min.json +110 -71
- package/apis/cloudformation-2010-05-15.min.json +68 -29
- package/apis/cloudformation-2010-05-15.waiters2.json +56 -1
- package/apis/codepipeline-2015-07-09.min.json +58 -40
- package/apis/cognito-identity-2014-06-30.min.json +50 -42
- package/apis/dynamodb-2012-08-10.min.json +66 -40
- package/apis/marketplace-catalog-2018-09-17.examples.json +5 -0
- package/apis/marketplace-catalog-2018-09-17.min.json +305 -0
- package/apis/marketplace-catalog-2018-09-17.paginators.json +14 -0
- package/apis/metadata.json +11 -0
- package/apis/sso-2019-06-10.examples.json +5 -0
- package/apis/sso-2019-06-10.min.json +190 -0
- package/apis/sso-2019-06-10.paginators.json +16 -0
- package/apis/sso-oidc-2019-06-10.examples.json +5 -0
- package/apis/sso-oidc-2019-06-10.min.json +131 -0
- package/apis/sso-oidc-2019-06-10.paginators.json +4 -0
- package/clients/all.d.ts +3 -0
- package/clients/all.js +4 -1
- package/clients/cloudformation.d.ts +65 -15
- package/clients/codepipeline.d.ts +26 -0
- package/clients/cognitoidentity.d.ts +14 -5
- package/clients/comprehend.d.ts +2 -2
- package/clients/costexplorer.d.ts +66 -18
- package/clients/dynamodb.d.ts +85 -53
- package/clients/ecr.d.ts +4 -4
- package/clients/elbv2.d.ts +14 -14
- package/clients/marketplacecatalog.d.ts +421 -0
- package/clients/marketplacecatalog.js +18 -0
- package/clients/sso.d.ts +197 -0
- package/clients/sso.js +18 -0
- package/clients/ssooidc.d.ts +210 -0
- package/clients/ssooidc.js +18 -0
- package/clients/transcribeservice.d.ts +8 -5
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +239 -76
- package/dist/aws-sdk.js +423 -227
- package/dist/aws-sdk.min.js +69 -69
- package/dist/xml2js.js +117 -65
- package/lib/config_service_placeholders.d.ts +6 -0
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +81 -49
- package/package.json +1 -1
package/clients/sso.d.ts
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
import {Request} from '../lib/request';
|
|
2
|
+
import {Response} from '../lib/response';
|
|
3
|
+
import {AWSError} from '../lib/error';
|
|
4
|
+
import {Service} from '../lib/service';
|
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
|
6
|
+
import {ConfigBase as Config} from '../lib/config';
|
|
7
|
+
interface Blob {}
|
|
8
|
+
declare class SSO extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
|
11
|
+
*/
|
|
12
|
+
constructor(options?: SSO.Types.ClientConfiguration)
|
|
13
|
+
config: Config & SSO.Types.ClientConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* Returns the STS short-term credentials for a given role name that is assigned to the user.
|
|
16
|
+
*/
|
|
17
|
+
getRoleCredentials(params: SSO.Types.GetRoleCredentialsRequest, callback?: (err: AWSError, data: SSO.Types.GetRoleCredentialsResponse) => void): Request<SSO.Types.GetRoleCredentialsResponse, AWSError>;
|
|
18
|
+
/**
|
|
19
|
+
* Returns the STS short-term credentials for a given role name that is assigned to the user.
|
|
20
|
+
*/
|
|
21
|
+
getRoleCredentials(callback?: (err: AWSError, data: SSO.Types.GetRoleCredentialsResponse) => void): Request<SSO.Types.GetRoleCredentialsResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Lists all roles that are assigned to the user for a given AWS account.
|
|
24
|
+
*/
|
|
25
|
+
listAccountRoles(params: SSO.Types.ListAccountRolesRequest, callback?: (err: AWSError, data: SSO.Types.ListAccountRolesResponse) => void): Request<SSO.Types.ListAccountRolesResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Lists all roles that are assigned to the user for a given AWS account.
|
|
28
|
+
*/
|
|
29
|
+
listAccountRoles(callback?: (err: AWSError, data: SSO.Types.ListAccountRolesResponse) => void): Request<SSO.Types.ListAccountRolesResponse, AWSError>;
|
|
30
|
+
/**
|
|
31
|
+
* Lists all AWS accounts assigned to the user. These AWS accounts are assigned by the administrator of the account. For more information, see Assign User Access in the AWS SSO User Guide. This operation returns a paginated response.
|
|
32
|
+
*/
|
|
33
|
+
listAccounts(params: SSO.Types.ListAccountsRequest, callback?: (err: AWSError, data: SSO.Types.ListAccountsResponse) => void): Request<SSO.Types.ListAccountsResponse, AWSError>;
|
|
34
|
+
/**
|
|
35
|
+
* Lists all AWS accounts assigned to the user. These AWS accounts are assigned by the administrator of the account. For more information, see Assign User Access in the AWS SSO User Guide. This operation returns a paginated response.
|
|
36
|
+
*/
|
|
37
|
+
listAccounts(callback?: (err: AWSError, data: SSO.Types.ListAccountsResponse) => void): Request<SSO.Types.ListAccountsResponse, AWSError>;
|
|
38
|
+
/**
|
|
39
|
+
* Removes the client- and server-side session that is associated with the user.
|
|
40
|
+
*/
|
|
41
|
+
logout(params: SSO.Types.LogoutRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
42
|
+
/**
|
|
43
|
+
* Removes the client- and server-side session that is associated with the user.
|
|
44
|
+
*/
|
|
45
|
+
logout(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
46
|
+
}
|
|
47
|
+
declare namespace SSO {
|
|
48
|
+
export type AccessKeyType = string;
|
|
49
|
+
export type AccessTokenType = string;
|
|
50
|
+
export type AccountIdType = string;
|
|
51
|
+
export interface AccountInfo {
|
|
52
|
+
/**
|
|
53
|
+
* The identifier of the AWS account that is assigned to the user.
|
|
54
|
+
*/
|
|
55
|
+
accountId?: AccountIdType;
|
|
56
|
+
/**
|
|
57
|
+
* The display name of the AWS account that is assigned to the user.
|
|
58
|
+
*/
|
|
59
|
+
accountName?: AccountNameType;
|
|
60
|
+
/**
|
|
61
|
+
* The email address of the AWS account that is assigned to the user.
|
|
62
|
+
*/
|
|
63
|
+
emailAddress?: EmailAddressType;
|
|
64
|
+
}
|
|
65
|
+
export type AccountListType = AccountInfo[];
|
|
66
|
+
export type AccountNameType = string;
|
|
67
|
+
export type EmailAddressType = string;
|
|
68
|
+
export type ExpirationTimestampType = number;
|
|
69
|
+
export interface GetRoleCredentialsRequest {
|
|
70
|
+
/**
|
|
71
|
+
* The friendly name of the role that is assigned to the user.
|
|
72
|
+
*/
|
|
73
|
+
roleName: RoleNameType;
|
|
74
|
+
/**
|
|
75
|
+
* The identifier for the AWS account that is assigned to the user.
|
|
76
|
+
*/
|
|
77
|
+
accountId: AccountIdType;
|
|
78
|
+
/**
|
|
79
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
|
|
80
|
+
*/
|
|
81
|
+
accessToken: AccessTokenType;
|
|
82
|
+
}
|
|
83
|
+
export interface GetRoleCredentialsResponse {
|
|
84
|
+
/**
|
|
85
|
+
* The credentials for the role that is assigned to the user.
|
|
86
|
+
*/
|
|
87
|
+
roleCredentials?: RoleCredentials;
|
|
88
|
+
}
|
|
89
|
+
export interface ListAccountRolesRequest {
|
|
90
|
+
/**
|
|
91
|
+
* The page token from the previous response output when you request subsequent pages.
|
|
92
|
+
*/
|
|
93
|
+
nextToken?: NextTokenType;
|
|
94
|
+
/**
|
|
95
|
+
* The number of items that clients can request per page.
|
|
96
|
+
*/
|
|
97
|
+
maxResults?: MaxResultType;
|
|
98
|
+
/**
|
|
99
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
|
|
100
|
+
*/
|
|
101
|
+
accessToken: AccessTokenType;
|
|
102
|
+
/**
|
|
103
|
+
* The identifier for the AWS account that is assigned to the user.
|
|
104
|
+
*/
|
|
105
|
+
accountId: AccountIdType;
|
|
106
|
+
}
|
|
107
|
+
export interface ListAccountRolesResponse {
|
|
108
|
+
/**
|
|
109
|
+
* The page token client that is used to retrieve the list of accounts.
|
|
110
|
+
*/
|
|
111
|
+
nextToken?: NextTokenType;
|
|
112
|
+
/**
|
|
113
|
+
* A paginated response with the list of roles and the next token if more results are available.
|
|
114
|
+
*/
|
|
115
|
+
roleList?: RoleListType;
|
|
116
|
+
}
|
|
117
|
+
export interface ListAccountsRequest {
|
|
118
|
+
/**
|
|
119
|
+
* (Optional) When requesting subsequent pages, this is the page token from the previous response output.
|
|
120
|
+
*/
|
|
121
|
+
nextToken?: NextTokenType;
|
|
122
|
+
/**
|
|
123
|
+
* This is the number of items clients can request per page.
|
|
124
|
+
*/
|
|
125
|
+
maxResults?: MaxResultType;
|
|
126
|
+
/**
|
|
127
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
|
|
128
|
+
*/
|
|
129
|
+
accessToken: AccessTokenType;
|
|
130
|
+
}
|
|
131
|
+
export interface ListAccountsResponse {
|
|
132
|
+
/**
|
|
133
|
+
* The page token client that is used to retrieve the list of accounts.
|
|
134
|
+
*/
|
|
135
|
+
nextToken?: NextTokenType;
|
|
136
|
+
/**
|
|
137
|
+
* A paginated response with the list of account information and the next token if more results are available.
|
|
138
|
+
*/
|
|
139
|
+
accountList?: AccountListType;
|
|
140
|
+
}
|
|
141
|
+
export interface LogoutRequest {
|
|
142
|
+
/**
|
|
143
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
|
|
144
|
+
*/
|
|
145
|
+
accessToken: AccessTokenType;
|
|
146
|
+
}
|
|
147
|
+
export type MaxResultType = number;
|
|
148
|
+
export type NextTokenType = string;
|
|
149
|
+
export interface RoleCredentials {
|
|
150
|
+
/**
|
|
151
|
+
* The identifier used for the temporary security credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.
|
|
152
|
+
*/
|
|
153
|
+
accessKeyId?: AccessKeyType;
|
|
154
|
+
/**
|
|
155
|
+
* The key that is used to sign the request. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.
|
|
156
|
+
*/
|
|
157
|
+
secretAccessKey?: SecretAccessKeyType;
|
|
158
|
+
/**
|
|
159
|
+
* The token used for temporary credentials. For more information, see Using Temporary Security Credentials to Request Access to AWS Resources in the AWS IAM User Guide.
|
|
160
|
+
*/
|
|
161
|
+
sessionToken?: SessionTokenType;
|
|
162
|
+
/**
|
|
163
|
+
* The date on which temporary security credentials expire.
|
|
164
|
+
*/
|
|
165
|
+
expiration?: ExpirationTimestampType;
|
|
166
|
+
}
|
|
167
|
+
export interface RoleInfo {
|
|
168
|
+
/**
|
|
169
|
+
* The friendly name of the role that is assigned to the user.
|
|
170
|
+
*/
|
|
171
|
+
roleName?: RoleNameType;
|
|
172
|
+
/**
|
|
173
|
+
* The identifier of the AWS account assigned to the user.
|
|
174
|
+
*/
|
|
175
|
+
accountId?: AccountIdType;
|
|
176
|
+
}
|
|
177
|
+
export type RoleListType = RoleInfo[];
|
|
178
|
+
export type RoleNameType = string;
|
|
179
|
+
export type SecretAccessKeyType = string;
|
|
180
|
+
export type SessionTokenType = string;
|
|
181
|
+
/**
|
|
182
|
+
* 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.
|
|
183
|
+
*/
|
|
184
|
+
export type apiVersion = "2019-06-10"|"latest"|string;
|
|
185
|
+
export interface ClientApiVersions {
|
|
186
|
+
/**
|
|
187
|
+
* 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.
|
|
188
|
+
*/
|
|
189
|
+
apiVersion?: apiVersion;
|
|
190
|
+
}
|
|
191
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
|
192
|
+
/**
|
|
193
|
+
* Contains interfaces for use with the SSO client.
|
|
194
|
+
*/
|
|
195
|
+
export import Types = SSO;
|
|
196
|
+
}
|
|
197
|
+
export = SSO;
|
package/clients/sso.js
ADDED
|
@@ -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['sso'] = {};
|
|
7
|
+
AWS.SSO = Service.defineService('sso', ['2019-06-10']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['sso'], '2019-06-10', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/sso-2019-06-10.min.json');
|
|
11
|
+
model.paginators = require('../apis/sso-2019-06-10.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.SSO;
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
import {Request} from '../lib/request';
|
|
2
|
+
import {Response} from '../lib/response';
|
|
3
|
+
import {AWSError} from '../lib/error';
|
|
4
|
+
import {Service} from '../lib/service';
|
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
|
6
|
+
import {ConfigBase as Config} from '../lib/config';
|
|
7
|
+
interface Blob {}
|
|
8
|
+
declare class SSOOIDC extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
|
11
|
+
*/
|
|
12
|
+
constructor(options?: SSOOIDC.Types.ClientConfiguration)
|
|
13
|
+
config: Config & SSOOIDC.Types.ClientConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* Creates and returns an access token for the authorized client. The access token issued will be used to fetch short-term credentials for the assigned roles in the AWS account.
|
|
16
|
+
*/
|
|
17
|
+
createToken(params: SSOOIDC.Types.CreateTokenRequest, callback?: (err: AWSError, data: SSOOIDC.Types.CreateTokenResponse) => void): Request<SSOOIDC.Types.CreateTokenResponse, AWSError>;
|
|
18
|
+
/**
|
|
19
|
+
* Creates and returns an access token for the authorized client. The access token issued will be used to fetch short-term credentials for the assigned roles in the AWS account.
|
|
20
|
+
*/
|
|
21
|
+
createToken(callback?: (err: AWSError, data: SSOOIDC.Types.CreateTokenResponse) => void): Request<SSOOIDC.Types.CreateTokenResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Registers a client with AWS SSO. This allows clients to initiate device authorization. The output should be persisted for reuse through many authentication requests.
|
|
24
|
+
*/
|
|
25
|
+
registerClient(params: SSOOIDC.Types.RegisterClientRequest, callback?: (err: AWSError, data: SSOOIDC.Types.RegisterClientResponse) => void): Request<SSOOIDC.Types.RegisterClientResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Registers a client with AWS SSO. This allows clients to initiate device authorization. The output should be persisted for reuse through many authentication requests.
|
|
28
|
+
*/
|
|
29
|
+
registerClient(callback?: (err: AWSError, data: SSOOIDC.Types.RegisterClientResponse) => void): Request<SSOOIDC.Types.RegisterClientResponse, AWSError>;
|
|
30
|
+
/**
|
|
31
|
+
* Initiates device authorization by requesting a pair of verification codes from the authorization service.
|
|
32
|
+
*/
|
|
33
|
+
startDeviceAuthorization(params: SSOOIDC.Types.StartDeviceAuthorizationRequest, callback?: (err: AWSError, data: SSOOIDC.Types.StartDeviceAuthorizationResponse) => void): Request<SSOOIDC.Types.StartDeviceAuthorizationResponse, AWSError>;
|
|
34
|
+
/**
|
|
35
|
+
* Initiates device authorization by requesting a pair of verification codes from the authorization service.
|
|
36
|
+
*/
|
|
37
|
+
startDeviceAuthorization(callback?: (err: AWSError, data: SSOOIDC.Types.StartDeviceAuthorizationResponse) => void): Request<SSOOIDC.Types.StartDeviceAuthorizationResponse, AWSError>;
|
|
38
|
+
}
|
|
39
|
+
declare namespace SSOOIDC {
|
|
40
|
+
export type AccessToken = string;
|
|
41
|
+
export type AuthCode = string;
|
|
42
|
+
export type ClientId = string;
|
|
43
|
+
export type ClientName = string;
|
|
44
|
+
export type ClientSecret = string;
|
|
45
|
+
export type ClientType = string;
|
|
46
|
+
export interface CreateTokenRequest {
|
|
47
|
+
/**
|
|
48
|
+
* The unique identifier string for each client. This value should come from the persisted result of the RegisterClient API.
|
|
49
|
+
*/
|
|
50
|
+
clientId: ClientId;
|
|
51
|
+
/**
|
|
52
|
+
* A secret string generated for the client. This value should come from the persisted result of the RegisterClient API.
|
|
53
|
+
*/
|
|
54
|
+
clientSecret: ClientSecret;
|
|
55
|
+
/**
|
|
56
|
+
* Supports grant types for authorization code, refresh token, and device code request.
|
|
57
|
+
*/
|
|
58
|
+
grantType: GrantType;
|
|
59
|
+
/**
|
|
60
|
+
* Used only when calling this API for the device code grant type. This short-term code is used to identify this authentication attempt. This should come from an in-memory reference to the result of the StartDeviceAuthorization API.
|
|
61
|
+
*/
|
|
62
|
+
deviceCode: DeviceCode;
|
|
63
|
+
/**
|
|
64
|
+
* The authorization code received from the authorization service. This parameter is required to perform an authorization grant request to get access to a token.
|
|
65
|
+
*/
|
|
66
|
+
code?: AuthCode;
|
|
67
|
+
/**
|
|
68
|
+
* The token used to obtain an access token in the event that the access token is invalid or expired. This token is not issued by the service.
|
|
69
|
+
*/
|
|
70
|
+
refreshToken?: RefreshToken;
|
|
71
|
+
/**
|
|
72
|
+
* The list of scopes that is defined by the client. Upon authorization, this list is used to restrict permissions when granting an access token.
|
|
73
|
+
*/
|
|
74
|
+
scope?: Scopes;
|
|
75
|
+
/**
|
|
76
|
+
* The location of the application that will receive the authorization code. Users authorize the service to send the request to this location.
|
|
77
|
+
*/
|
|
78
|
+
redirectUri?: URI;
|
|
79
|
+
}
|
|
80
|
+
export interface CreateTokenResponse {
|
|
81
|
+
/**
|
|
82
|
+
* An opaque token to access AWS SSO resources assigned to a user.
|
|
83
|
+
*/
|
|
84
|
+
accessToken?: AccessToken;
|
|
85
|
+
/**
|
|
86
|
+
* Used to notify the client that the returned token is an access token. The supported type is BearerToken.
|
|
87
|
+
*/
|
|
88
|
+
tokenType?: TokenType;
|
|
89
|
+
/**
|
|
90
|
+
* Indicates the time in seconds when an access token will expire.
|
|
91
|
+
*/
|
|
92
|
+
expiresIn?: ExpirationInSeconds;
|
|
93
|
+
/**
|
|
94
|
+
* A token that, if present, can be used to refresh a previously issued access token that might have expired.
|
|
95
|
+
*/
|
|
96
|
+
refreshToken?: RefreshToken;
|
|
97
|
+
/**
|
|
98
|
+
* The identifier of the user that associated with the access token, if present.
|
|
99
|
+
*/
|
|
100
|
+
idToken?: IdToken;
|
|
101
|
+
}
|
|
102
|
+
export type DeviceCode = string;
|
|
103
|
+
export type ExpirationInSeconds = number;
|
|
104
|
+
export type GrantType = string;
|
|
105
|
+
export type IdToken = string;
|
|
106
|
+
export type IntervalInSeconds = number;
|
|
107
|
+
export type LongTimeStampType = number;
|
|
108
|
+
export type RefreshToken = string;
|
|
109
|
+
export interface RegisterClientRequest {
|
|
110
|
+
/**
|
|
111
|
+
* The friendly name of the client.
|
|
112
|
+
*/
|
|
113
|
+
clientName: ClientName;
|
|
114
|
+
/**
|
|
115
|
+
* The type of client. The service supports only public as a client type. Anything other than public will be rejected by the service.
|
|
116
|
+
*/
|
|
117
|
+
clientType: ClientType;
|
|
118
|
+
/**
|
|
119
|
+
* The list of scopes that are defined by the client. Upon authorization, this list is used to restrict permissions when granting an access token.
|
|
120
|
+
*/
|
|
121
|
+
scopes?: Scopes;
|
|
122
|
+
}
|
|
123
|
+
export interface RegisterClientResponse {
|
|
124
|
+
/**
|
|
125
|
+
* The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
|
|
126
|
+
*/
|
|
127
|
+
clientId?: ClientId;
|
|
128
|
+
/**
|
|
129
|
+
* A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
|
|
130
|
+
*/
|
|
131
|
+
clientSecret?: ClientSecret;
|
|
132
|
+
/**
|
|
133
|
+
* Indicates the time at which the clientId and clientSecret were issued.
|
|
134
|
+
*/
|
|
135
|
+
clientIdIssuedAt?: LongTimeStampType;
|
|
136
|
+
/**
|
|
137
|
+
* Indicates the time at which the clientId and clientSecret will become invalid.
|
|
138
|
+
*/
|
|
139
|
+
clientSecretExpiresAt?: LongTimeStampType;
|
|
140
|
+
/**
|
|
141
|
+
* The endpoint where the client can request authorization.
|
|
142
|
+
*/
|
|
143
|
+
authorizationEndpoint?: URI;
|
|
144
|
+
/**
|
|
145
|
+
* The endpoint where the client can get an access token.
|
|
146
|
+
*/
|
|
147
|
+
tokenEndpoint?: URI;
|
|
148
|
+
}
|
|
149
|
+
export type Scope = string;
|
|
150
|
+
export type Scopes = Scope[];
|
|
151
|
+
export interface StartDeviceAuthorizationRequest {
|
|
152
|
+
/**
|
|
153
|
+
* The unique identifier string for the client that is registered with AWS SSO. This value should come from the persisted result of the RegisterClient API operation.
|
|
154
|
+
*/
|
|
155
|
+
clientId: ClientId;
|
|
156
|
+
/**
|
|
157
|
+
* A secret string that is generated for the client. This value should come from the persisted result of the RegisterClient API operation.
|
|
158
|
+
*/
|
|
159
|
+
clientSecret: ClientSecret;
|
|
160
|
+
/**
|
|
161
|
+
* The URL for the AWS SSO user portal. For more information, see Using the User Portal in the AWS Single Sign-On User Guide.
|
|
162
|
+
*/
|
|
163
|
+
startUrl: URI;
|
|
164
|
+
}
|
|
165
|
+
export interface StartDeviceAuthorizationResponse {
|
|
166
|
+
/**
|
|
167
|
+
* The short-lived code that is used by the device when polling for a session token.
|
|
168
|
+
*/
|
|
169
|
+
deviceCode?: DeviceCode;
|
|
170
|
+
/**
|
|
171
|
+
* A one-time user verification code. This is needed to authorize an in-use device.
|
|
172
|
+
*/
|
|
173
|
+
userCode?: UserCode;
|
|
174
|
+
/**
|
|
175
|
+
* The URI of the verification page that takes the userCode to authorize the device.
|
|
176
|
+
*/
|
|
177
|
+
verificationUri?: URI;
|
|
178
|
+
/**
|
|
179
|
+
* An alternate URL that the client can use to automatically launch a browser. This process skips the manual step in which the user visits the verification page and enters their code.
|
|
180
|
+
*/
|
|
181
|
+
verificationUriComplete?: URI;
|
|
182
|
+
/**
|
|
183
|
+
* Indicates the number of seconds in which the verification code will become invalid.
|
|
184
|
+
*/
|
|
185
|
+
expiresIn?: ExpirationInSeconds;
|
|
186
|
+
/**
|
|
187
|
+
* Indicates the number of seconds the client must wait between attempts when polling for a session.
|
|
188
|
+
*/
|
|
189
|
+
interval?: IntervalInSeconds;
|
|
190
|
+
}
|
|
191
|
+
export type TokenType = string;
|
|
192
|
+
export type URI = string;
|
|
193
|
+
export type UserCode = string;
|
|
194
|
+
/**
|
|
195
|
+
* 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.
|
|
196
|
+
*/
|
|
197
|
+
export type apiVersion = "2019-06-10"|"latest"|string;
|
|
198
|
+
export interface ClientApiVersions {
|
|
199
|
+
/**
|
|
200
|
+
* 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.
|
|
201
|
+
*/
|
|
202
|
+
apiVersion?: apiVersion;
|
|
203
|
+
}
|
|
204
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
|
205
|
+
/**
|
|
206
|
+
* Contains interfaces for use with the SSOOIDC client.
|
|
207
|
+
*/
|
|
208
|
+
export import Types = SSOOIDC;
|
|
209
|
+
}
|
|
210
|
+
export = SSOOIDC;
|
|
@@ -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['ssooidc'] = {};
|
|
7
|
+
AWS.SSOOIDC = Service.defineService('ssooidc', ['2019-06-10']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['ssooidc'], '2019-06-10', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/sso-oidc-2019-06-10.min.json');
|
|
11
|
+
model.paginators = require('../apis/sso-oidc-2019-06-10.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.SSOOIDC;
|
|
@@ -100,7 +100,7 @@ declare namespace TranscribeService {
|
|
|
100
100
|
*/
|
|
101
101
|
Phrases?: Phrases;
|
|
102
102
|
/**
|
|
103
|
-
* The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is https://s3
|
|
103
|
+
* The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey> For example: https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide. For more information about custom vocabularies, see Custom Vocabularies.
|
|
104
104
|
*/
|
|
105
105
|
VocabularyFileUri?: Uri;
|
|
106
106
|
}
|
|
@@ -185,7 +185,7 @@ declare namespace TranscribeService {
|
|
|
185
185
|
DownloadUri?: Uri;
|
|
186
186
|
}
|
|
187
187
|
export type KMSKeyId = string;
|
|
188
|
-
export type LanguageCode = "en-US"|"es-US"|"en-AU"|"fr-CA"|"en-GB"|"de-DE"|"pt-BR"|"fr-FR"|"it-IT"|"ko-KR"|"es-ES"|"en-IN"|"hi-IN"|"ar-SA"|"ru-RU"|"zh-CN"|string;
|
|
188
|
+
export type LanguageCode = "en-US"|"es-US"|"en-AU"|"fr-CA"|"en-GB"|"de-DE"|"pt-BR"|"fr-FR"|"it-IT"|"ko-KR"|"es-ES"|"en-IN"|"hi-IN"|"ar-SA"|"ru-RU"|"zh-CN"|"nl-NL"|"id-ID"|"ta-IN"|"fa-IR"|"en-IE"|"en-AB"|"en-WL"|"pt-PT"|string;
|
|
189
189
|
export interface ListTranscriptionJobsRequest {
|
|
190
190
|
/**
|
|
191
191
|
* When specified, returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don’t specify a status, Amazon Transcribe returns all transcription jobs ordered by creation date.
|
|
@@ -254,7 +254,7 @@ declare namespace TranscribeService {
|
|
|
254
254
|
export type MaxSpeakers = number;
|
|
255
255
|
export interface Media {
|
|
256
256
|
/**
|
|
257
|
-
* The S3 location of the input media file. The URI must be in the same region as the API endpoint that you are calling. The general form is: https://s3
|
|
257
|
+
* The S3 location of the input media file. The URI must be in the same region as the API endpoint that you are calling. The general form is: https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey> For example: https://s3.us-east-1.amazonaws.com/examplebucket/example.mp4 https://s3.us-east-1.amazonaws.com/examplebucket/mediadocs/example.mp4 For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide.
|
|
258
258
|
*/
|
|
259
259
|
MediaFileUri?: Uri;
|
|
260
260
|
}
|
|
@@ -305,9 +305,12 @@ declare namespace TranscribeService {
|
|
|
305
305
|
*/
|
|
306
306
|
Media: Media;
|
|
307
307
|
/**
|
|
308
|
-
* The location where the transcription is stored. If you set the OutputBucketName, Amazon Transcribe puts the transcription in the specified S3 bucket. When you call the GetTranscriptionJob operation, the operation returns this location in the TranscriptFileUri field. The S3 bucket must have permissions that allow Amazon Transcribe to put files in the bucket. For more information, see Permissions Required for IAM User Roles. Amazon Transcribe uses the default Amazon S3 key for server-side encryption of transcripts that are placed in your S3 bucket.
|
|
308
|
+
* The location where the transcription is stored. If you set the OutputBucketName, Amazon Transcribe puts the transcription in the specified S3 bucket. When you call the GetTranscriptionJob operation, the operation returns this location in the TranscriptFileUri field. The S3 bucket must have permissions that allow Amazon Transcribe to put files in the bucket. For more information, see Permissions Required for IAM User Roles. You can specify an AWS Key Management Service (KMS) key to encrypt the output of your transcription using the OutputEncryptionKMSKeyId parameter. If you don't specify a KMS key, Amazon Transcribe uses the default Amazon S3 key for server-side encryption of transcripts that are placed in your S3 bucket. If you don't set the OutputBucketName, Amazon Transcribe generates a pre-signed URL, a shareable URL that provides secure access to your transcription, and returns it in the TranscriptFileUri field. Use this URL to download the transcription.
|
|
309
309
|
*/
|
|
310
310
|
OutputBucketName?: OutputBucketName;
|
|
311
|
+
/**
|
|
312
|
+
* The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the output of the transcription job. The user calling the StartTranscriptionJob operation must have permission to use the specified KMS key. You can use either of the following to identify a KMS key in the current account: KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab" KMS Key Alias: "alias/ExampleAlias" You can use either of the following to identify a KMS key in the current account or another account: Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:region:account ID:key/1234abcd-12ab-34cd-56ef-1234567890ab" ARN of a KMS Key Alias: "arn:aws:kms:region:account ID:alias/ExampleAlias" If you don't specify an encryption key, the output of the transcription job is encrypted with the default Amazon S3 key (SSE-S3). If you specify a KMS key to encrypt your output, you must also specify an output location in the OutputBucketName parameter.
|
|
313
|
+
*/
|
|
311
314
|
OutputEncryptionKMSKeyId?: KMSKeyId;
|
|
312
315
|
/**
|
|
313
316
|
* A Settings object that provides optional settings for a transcription job.
|
|
@@ -419,7 +422,7 @@ declare namespace TranscribeService {
|
|
|
419
422
|
*/
|
|
420
423
|
Phrases?: Phrases;
|
|
421
424
|
/**
|
|
422
|
-
* The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is https://s3
|
|
425
|
+
* The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is https://s3.<aws-region>.amazonaws.com/<bucket-name>/<keyprefix>/<objectkey> For example: https://s3.us-east-1.amazonaws.com/examplebucket/vocab.txt For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide. For more information about custom vocabularies, see Custom Vocabularies.
|
|
423
426
|
*/
|
|
424
427
|
VocabularyFileUri?: Uri;
|
|
425
428
|
}
|
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
83
83
|
/**
|
|
84
84
|
* @constant
|
|
85
85
|
*/
|
|
86
|
-
VERSION: '2.
|
|
86
|
+
VERSION: '2.570.0',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
89
|
* @api private
|
|
@@ -1646,7 +1646,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
1646
1646
|
/* 7 */
|
|
1647
1647
|
/***/ (function(module, exports) {
|
|
1648
1648
|
|
|
1649
|
-
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*"],"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},"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"},"greengrass":{"name":"Greengrass"},"dax":{"name":"DAX"},"migrationhub":{"prefix":"AWSMigrationHub","name":"MigrationHub"},"cloudhsmv2":{"name":"CloudHSMV2"},"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"}}
|
|
1649
|
+
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*"],"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},"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"},"greengrass":{"name":"Greengrass"},"dax":{"name":"DAX"},"migrationhub":{"prefix":"AWSMigrationHub","name":"MigrationHub"},"cloudhsmv2":{"name":"CloudHSMV2"},"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"}}
|
|
1650
1650
|
|
|
1651
1651
|
/***/ }),
|
|
1652
1652
|
/* 8 */
|