cdk-comprehend-s3olap 2.0.82 → 2.0.85
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 +5 -5
- 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/greengrassv2-2020-11-30.min.json +26 -19
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
- package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
- package/node_modules/aws-sdk/clients/fsx.d.ts +1 -1
- package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
- package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
- package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -16
- 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 +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +12 -6
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +19 -13
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +10 -10
@@ -20,27 +20,27 @@ declare class SSO extends Service {
|
|
20
20
|
*/
|
21
21
|
getRoleCredentials(callback?: (err: AWSError, data: SSO.Types.GetRoleCredentialsResponse) => void): Request<SSO.Types.GetRoleCredentialsResponse, AWSError>;
|
22
22
|
/**
|
23
|
-
* Lists all roles that are assigned to the user for a given
|
23
|
+
* Lists all roles that are assigned to the user for a given AWS account.
|
24
24
|
*/
|
25
25
|
listAccountRoles(params: SSO.Types.ListAccountRolesRequest, callback?: (err: AWSError, data: SSO.Types.ListAccountRolesResponse) => void): Request<SSO.Types.ListAccountRolesResponse, AWSError>;
|
26
26
|
/**
|
27
|
-
* Lists all roles that are assigned to the user for a given
|
27
|
+
* Lists all roles that are assigned to the user for a given AWS account.
|
28
28
|
*/
|
29
29
|
listAccountRoles(callback?: (err: AWSError, data: SSO.Types.ListAccountRolesResponse) => void): Request<SSO.Types.ListAccountRolesResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Lists all
|
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 IAM Identity Center User Guide. This operation returns a paginated response.
|
32
32
|
*/
|
33
33
|
listAccounts(params: SSO.Types.ListAccountsRequest, callback?: (err: AWSError, data: SSO.Types.ListAccountsResponse) => void): Request<SSO.Types.ListAccountsResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Lists all
|
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 IAM Identity Center User Guide. This operation returns a paginated response.
|
36
36
|
*/
|
37
37
|
listAccounts(callback?: (err: AWSError, data: SSO.Types.ListAccountsResponse) => void): Request<SSO.Types.ListAccountsResponse, AWSError>;
|
38
38
|
/**
|
39
|
-
* Removes the locally stored SSO tokens from the client-side cache and sends an API call to the
|
39
|
+
* Removes the locally stored SSO tokens from the client-side cache and sends an API call to the IAM Identity Center service to invalidate the corresponding server-side IAM Identity Center sign in session. If a user uses IAM Identity Center to access the AWS CLI, the user’s IAM Identity Center sign in session is used to obtain an IAM session, as specified in the corresponding IAM Identity Center permission set. More specifically, IAM Identity Center assumes an IAM role in the target account on behalf of the user, and the corresponding temporary AWS credentials are returned to the client. After user logout, any existing IAM role sessions that were created by using IAM Identity Center permission sets continue based on the duration configured in the permission set. For more information, see User authentications in the IAM Identity Center User Guide.
|
40
40
|
*/
|
41
41
|
logout(params: SSO.Types.LogoutRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
42
42
|
/**
|
43
|
-
* Removes the locally stored SSO tokens from the client-side cache and sends an API call to the
|
43
|
+
* Removes the locally stored SSO tokens from the client-side cache and sends an API call to the IAM Identity Center service to invalidate the corresponding server-side IAM Identity Center sign in session. If a user uses IAM Identity Center to access the AWS CLI, the user’s IAM Identity Center sign in session is used to obtain an IAM session, as specified in the corresponding IAM Identity Center permission set. More specifically, IAM Identity Center assumes an IAM role in the target account on behalf of the user, and the corresponding temporary AWS credentials are returned to the client. After user logout, any existing IAM role sessions that were created by using IAM Identity Center permission sets continue based on the duration configured in the permission set. For more information, see User authentications in the IAM Identity Center User Guide.
|
44
44
|
*/
|
45
45
|
logout(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
46
46
|
}
|
@@ -50,15 +50,15 @@ declare namespace SSO {
|
|
50
50
|
export type AccountIdType = string;
|
51
51
|
export interface AccountInfo {
|
52
52
|
/**
|
53
|
-
* The identifier of the
|
53
|
+
* The identifier of the AWS account that is assigned to the user.
|
54
54
|
*/
|
55
55
|
accountId?: AccountIdType;
|
56
56
|
/**
|
57
|
-
* The display name of the
|
57
|
+
* The display name of the AWS account that is assigned to the user.
|
58
58
|
*/
|
59
59
|
accountName?: AccountNameType;
|
60
60
|
/**
|
61
|
-
* The email address of the
|
61
|
+
* The email address of the AWS account that is assigned to the user.
|
62
62
|
*/
|
63
63
|
emailAddress?: EmailAddressType;
|
64
64
|
}
|
@@ -72,11 +72,11 @@ declare namespace SSO {
|
|
72
72
|
*/
|
73
73
|
roleName: RoleNameType;
|
74
74
|
/**
|
75
|
-
* The identifier for the
|
75
|
+
* The identifier for the AWS account that is assigned to the user.
|
76
76
|
*/
|
77
77
|
accountId: AccountIdType;
|
78
78
|
/**
|
79
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
79
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the IAM Identity Center OIDC API Reference Guide.
|
80
80
|
*/
|
81
81
|
accessToken: AccessTokenType;
|
82
82
|
}
|
@@ -96,11 +96,11 @@ declare namespace SSO {
|
|
96
96
|
*/
|
97
97
|
maxResults?: MaxResultType;
|
98
98
|
/**
|
99
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
99
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the IAM Identity Center OIDC API Reference Guide.
|
100
100
|
*/
|
101
101
|
accessToken: AccessTokenType;
|
102
102
|
/**
|
103
|
-
* The identifier for the
|
103
|
+
* The identifier for the AWS account that is assigned to the user.
|
104
104
|
*/
|
105
105
|
accountId: AccountIdType;
|
106
106
|
}
|
@@ -124,7 +124,7 @@ declare namespace SSO {
|
|
124
124
|
*/
|
125
125
|
maxResults?: MaxResultType;
|
126
126
|
/**
|
127
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
127
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the IAM Identity Center OIDC API Reference Guide.
|
128
128
|
*/
|
129
129
|
accessToken: AccessTokenType;
|
130
130
|
}
|
@@ -140,7 +140,7 @@ declare namespace SSO {
|
|
140
140
|
}
|
141
141
|
export interface LogoutRequest {
|
142
142
|
/**
|
143
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
143
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the IAM Identity Center OIDC API Reference Guide.
|
144
144
|
*/
|
145
145
|
accessToken: AccessTokenType;
|
146
146
|
}
|
@@ -148,15 +148,15 @@ declare namespace SSO {
|
|
148
148
|
export type NextTokenType = string;
|
149
149
|
export interface RoleCredentials {
|
150
150
|
/**
|
151
|
-
* The identifier used for the temporary security credentials. For more information, see Using Temporary Security Credentials to Request Access to
|
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
152
|
*/
|
153
153
|
accessKeyId?: AccessKeyType;
|
154
154
|
/**
|
155
|
-
* The key that is used to sign the request. For more information, see Using Temporary Security Credentials to Request Access to
|
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
156
|
*/
|
157
157
|
secretAccessKey?: SecretAccessKeyType;
|
158
158
|
/**
|
159
|
-
* The token used for temporary credentials. For more information, see Using Temporary Security Credentials to Request Access to
|
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
160
|
*/
|
161
161
|
sessionToken?: SessionTokenType;
|
162
162
|
/**
|
@@ -170,7 +170,7 @@ declare namespace SSO {
|
|
170
170
|
*/
|
171
171
|
roleName?: RoleNameType;
|
172
172
|
/**
|
173
|
-
* The identifier of the
|
173
|
+
* The identifier of the AWS account assigned to the user.
|
174
174
|
*/
|
175
175
|
accountId?: AccountIdType;
|
176
176
|
}
|