aws-sdk 2.1403.0 → 2.1405.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 +11 -1
- package/README.md +1 -1
- package/apis/connect-2017-08-08.min.json +79 -27
- package/apis/connect-2017-08-08.paginators.json +6 -0
- package/apis/devops-guru-2020-12-01.min.json +49 -33
- package/apis/glue-2017-03-31.min.json +358 -348
- package/apis/guardduty-2017-11-28.min.json +54 -49
- package/apis/iam-2010-05-08.min.json +85 -54
- package/apis/iam-2010-05-08.paginators.json +49 -0
- package/apis/pinpoint-2016-12-01.min.json +202 -192
- package/clients/connect.d.ts +82 -4
- package/clients/devopsguru.d.ts +41 -3
- package/clients/fsx.d.ts +9 -3
- package/clients/glue.d.ts +11 -2
- package/clients/guardduty.d.ts +7 -2
- package/clients/iam.d.ts +51 -12
- package/clients/pinpoint.d.ts +10 -0
- package/clients/rds.d.ts +289 -289
- package/clients/verifiedpermissions.d.ts +6 -6
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +222 -84
- package/dist/aws-sdk.min.js +78 -78
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -28,11 +28,11 @@ declare class VerifiedPermissions extends Service {
|
|
28
28
|
*/
|
29
29
|
createPolicy(callback?: (err: AWSError, data: VerifiedPermissions.Types.CreatePolicyOutput) => void): Request<VerifiedPermissions.Types.CreatePolicyOutput, AWSError>;
|
30
30
|
/**
|
31
|
-
* Creates a policy store. A policy store is a container for policy resources.
|
31
|
+
* Creates a policy store. A policy store is a container for policy resources. Although Cedar supports multiple namespaces, Verified Permissions currently supports only one namespace per policy store.
|
32
32
|
*/
|
33
33
|
createPolicyStore(params: VerifiedPermissions.Types.CreatePolicyStoreInput, callback?: (err: AWSError, data: VerifiedPermissions.Types.CreatePolicyStoreOutput) => void): Request<VerifiedPermissions.Types.CreatePolicyStoreOutput, AWSError>;
|
34
34
|
/**
|
35
|
-
* Creates a policy store. A policy store is a container for policy resources.
|
35
|
+
* Creates a policy store. A policy store is a container for policy resources. Although Cedar supports multiple namespaces, Verified Permissions currently supports only one namespace per policy store.
|
36
36
|
*/
|
37
37
|
createPolicyStore(callback?: (err: AWSError, data: VerifiedPermissions.Types.CreatePolicyStoreOutput) => void): Request<VerifiedPermissions.Types.CreatePolicyStoreOutput, AWSError>;
|
38
38
|
/**
|
@@ -249,7 +249,7 @@ declare namespace VerifiedPermissions {
|
|
249
249
|
export type ClientIds = ClientId[];
|
250
250
|
export interface CognitoUserPoolConfiguration {
|
251
251
|
/**
|
252
|
-
* The Amazon Resource Name (ARN) of the Amazon Cognito user pool that contains the identities to be authorized. Example: "UserPoolArn": "cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5"
|
252
|
+
* The Amazon Resource Name (ARN) of the Amazon Cognito user pool that contains the identities to be authorized. Example: "UserPoolArn": "arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5"
|
253
253
|
*/
|
254
254
|
userPoolArn: UserPoolArn;
|
255
255
|
/**
|
@@ -259,7 +259,7 @@ declare namespace VerifiedPermissions {
|
|
259
259
|
}
|
260
260
|
export interface Configuration {
|
261
261
|
/**
|
262
|
-
* Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"]}}
|
262
|
+
* Contains configuration details of a Amazon Cognito user pool that Verified Permissions can use as a source of authenticated identities as entities. It specifies the Amazon Resource Name (ARN) of a Amazon Cognito user pool and one or more application client IDs. Example: "configuration":{"cognitoUserPoolConfiguration":{"userPoolArn":"arn:aws:cognito-idp:us-east-1:123456789012:userpool/us-east-1_1a2b3c4d5","clientIds": ["a1b2c3d4e5f6g7h8i9j0kalbmc"]}}
|
263
263
|
*/
|
264
264
|
cognitoUserPoolConfiguration?: CognitoUserPoolConfiguration;
|
265
265
|
}
|
@@ -780,7 +780,7 @@ declare namespace VerifiedPermissions {
|
|
780
780
|
*/
|
781
781
|
context?: ContextDefinition;
|
782
782
|
/**
|
783
|
-
* Specifies the list of
|
783
|
+
* Specifies the list of resources and principals and their associated attributes that Verified Permissions can examine when evaluating the policies. You can include only principal and resource entities in this parameter; you can't include actions. You must specify actions in the schema.
|
784
784
|
*/
|
785
785
|
entities?: EntitiesDefinition;
|
786
786
|
}
|
@@ -824,7 +824,7 @@ declare namespace VerifiedPermissions {
|
|
824
824
|
*/
|
825
825
|
context?: ContextDefinition;
|
826
826
|
/**
|
827
|
-
* Specifies the list of
|
827
|
+
* Specifies the list of resources and principals and their associated attributes that Verified Permissions can examine when evaluating the policies. You can include only principal and resource entities in this parameter; you can't include actions. You must specify actions in the schema.
|
828
828
|
*/
|
829
829
|
entities?: EntitiesDefinition;
|
830
830
|
}
|