cdk-comprehend-s3olap 2.0.61 → 2.0.64
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 +4 -4
- 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 +16 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/dlm-2018-01-12.min.json +15 -9
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +627 -623
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +306 -295
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +128 -87
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +60 -44
- package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.min.json +274 -191
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +501 -468
- package/node_modules/aws-sdk/apis/sagemaker-a2i-runtime-2019-11-07.min.json +12 -8
- package/node_modules/aws-sdk/clients/cloudwatch.d.ts +7 -7
- package/node_modules/aws-sdk/clients/dlm.d.ts +30 -25
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -0
- package/node_modules/aws-sdk/clients/glue.d.ts +31 -2
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +45 -0
- package/node_modules/aws-sdk/clients/location.d.ts +27 -13
- package/node_modules/aws-sdk/clients/pinpoint.d.ts +96 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +10 -10
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +51 -5
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +82 -82
- package/node_modules/aws-sdk/clients/ssooidc.d.ts +11 -11
- 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 +9 -9
- package/node_modules/aws-sdk/dist/aws-sdk.js +690 -670
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +65 -65
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +7 -7
- 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 +7 -7
@@ -12,19 +12,19 @@ declare class SSOOIDC extends Service {
|
|
12
12
|
constructor(options?: SSOOIDC.Types.ClientConfiguration)
|
13
13
|
config: Config & SSOOIDC.Types.ClientConfiguration;
|
14
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
|
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 Amazon Web Services account.
|
16
16
|
*/
|
17
17
|
createToken(params: SSOOIDC.Types.CreateTokenRequest, callback?: (err: AWSError, data: SSOOIDC.Types.CreateTokenResponse) => void): Request<SSOOIDC.Types.CreateTokenResponse, AWSError>;
|
18
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
|
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 Amazon Web Services account.
|
20
20
|
*/
|
21
21
|
createToken(callback?: (err: AWSError, data: SSOOIDC.Types.CreateTokenResponse) => void): Request<SSOOIDC.Types.CreateTokenResponse, AWSError>;
|
22
22
|
/**
|
23
|
-
* Registers a client with
|
23
|
+
* Registers a client with Amazon Web Services SSO. This allows clients to initiate device authorization. The output should be persisted for reuse through many authentication requests.
|
24
24
|
*/
|
25
25
|
registerClient(params: SSOOIDC.Types.RegisterClientRequest, callback?: (err: AWSError, data: SSOOIDC.Types.RegisterClientResponse) => void): Request<SSOOIDC.Types.RegisterClientResponse, AWSError>;
|
26
26
|
/**
|
27
|
-
* Registers a client with
|
27
|
+
* Registers a client with Amazon Web Services SSO. This allows clients to initiate device authorization. The output should be persisted for reuse through many authentication requests.
|
28
28
|
*/
|
29
29
|
registerClient(callback?: (err: AWSError, data: SSOOIDC.Types.RegisterClientResponse) => void): Request<SSOOIDC.Types.RegisterClientResponse, AWSError>;
|
30
30
|
/**
|
@@ -53,7 +53,7 @@ declare namespace SSOOIDC {
|
|
53
53
|
*/
|
54
54
|
clientSecret: ClientSecret;
|
55
55
|
/**
|
56
|
-
* Supports grant types for authorization code, refresh token, and device code request.
|
56
|
+
* Supports grant types for the authorization code, refresh token, and device code request. For device code requests, specify the following value: urn:ietf:params:oauth:grant-type:device_code For information about how to obtain the device code, see the StartDeviceAuthorization topic.
|
57
57
|
*/
|
58
58
|
grantType: GrantType;
|
59
59
|
/**
|
@@ -65,7 +65,7 @@ declare namespace SSOOIDC {
|
|
65
65
|
*/
|
66
66
|
code?: AuthCode;
|
67
67
|
/**
|
68
|
-
* The token used to obtain an access token in the event that the access token is invalid or expired.
|
68
|
+
* Currently, refreshToken is not yet implemented and is not supported. For more information about the features and limitations of the current Amazon Web Services SSO OIDC implementation, see Considerations for Using this Guide in the Amazon Web Services SSO OIDC API Reference. The token used to obtain an access token in the event that the access token is invalid or expired.
|
69
69
|
*/
|
70
70
|
refreshToken?: RefreshToken;
|
71
71
|
/**
|
@@ -79,7 +79,7 @@ declare namespace SSOOIDC {
|
|
79
79
|
}
|
80
80
|
export interface CreateTokenResponse {
|
81
81
|
/**
|
82
|
-
* An opaque token to access
|
82
|
+
* An opaque token to access Amazon Web Services SSO resources assigned to a user.
|
83
83
|
*/
|
84
84
|
accessToken?: AccessToken;
|
85
85
|
/**
|
@@ -91,11 +91,11 @@ declare namespace SSOOIDC {
|
|
91
91
|
*/
|
92
92
|
expiresIn?: ExpirationInSeconds;
|
93
93
|
/**
|
94
|
-
* A token that, if present, can be used to refresh a previously issued access token that might have expired.
|
94
|
+
* Currently, refreshToken is not yet implemented and is not supported. For more information about the features and limitations of the current Amazon Web Services SSO OIDC implementation, see Considerations for Using this Guide in the Amazon Web Services SSO OIDC API Reference. A token that, if present, can be used to refresh a previously issued access token that might have expired.
|
95
95
|
*/
|
96
96
|
refreshToken?: RefreshToken;
|
97
97
|
/**
|
98
|
-
* The identifier of the user that associated with the access token, if present.
|
98
|
+
* Currently, idToken is not yet implemented and is not supported. For more information about the features and limitations of the current Amazon Web Services SSO OIDC implementation, see Considerations for Using this Guide in the Amazon Web Services SSO OIDC API Reference. The identifier of the user that associated with the access token, if present.
|
99
99
|
*/
|
100
100
|
idToken?: IdToken;
|
101
101
|
}
|
@@ -150,7 +150,7 @@ declare namespace SSOOIDC {
|
|
150
150
|
export type Scopes = Scope[];
|
151
151
|
export interface StartDeviceAuthorizationRequest {
|
152
152
|
/**
|
153
|
-
* The unique identifier string for the client that is registered with
|
153
|
+
* The unique identifier string for the client that is registered with Amazon Web Services SSO. This value should come from the persisted result of the RegisterClient API operation.
|
154
154
|
*/
|
155
155
|
clientId: ClientId;
|
156
156
|
/**
|
@@ -158,7 +158,7 @@ declare namespace SSOOIDC {
|
|
158
158
|
*/
|
159
159
|
clientSecret: ClientSecret;
|
160
160
|
/**
|
161
|
-
* The URL for the AWS
|
161
|
+
* The URL for the AWS access portal. For more information, see Using the AWS access portal in the Amazon Web Services SSO User Guide.
|
162
162
|
*/
|
163
163
|
startUrl: URI;
|
164
164
|
}
|