cdk-comprehend-s3olap 2.0.86 → 2.0.89
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 +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +60 -51
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +275 -134
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
- package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +57 -54
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +619 -563
- package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +24 -11
- package/node_modules/aws-sdk/clients/connect.d.ts +144 -10
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
- package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/eks.d.ts +7 -7
- package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
- package/node_modules/aws-sdk/clients/identitystore.d.ts +34 -34
- package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
- package/node_modules/aws-sdk/clients/mediapackage.d.ts +2 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +74 -1
- package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
- 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 +754 -747
- package/node_modules/aws-sdk/dist/aws-sdk.js +398 -198
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/install.js +5 -5
- package/node_modules/esbuild/lib/main.js +14 -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 +12 -10
@@ -429,7 +429,7 @@ declare namespace EKS {
|
|
429
429
|
}
|
430
430
|
export type AddonIssueCode = "AccessDenied"|"InternalFailure"|"ClusterUnreachable"|"InsufficientNumberOfReplicas"|"ConfigurationConflict"|"AdmissionRequestDenied"|"UnsupportedAddonModification"|"K8sResourceNotFound"|string;
|
431
431
|
export type AddonIssueList = AddonIssue[];
|
432
|
-
export type AddonStatus = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"UPDATING"|"DELETING"|"DELETE_FAILED"|"DEGRADED"|string;
|
432
|
+
export type AddonStatus = "CREATING"|"ACTIVE"|"CREATE_FAILED"|"UPDATING"|"DELETING"|"DELETE_FAILED"|"DEGRADED"|"UPDATE_FAILED"|string;
|
433
433
|
export interface AddonVersionInfo {
|
434
434
|
/**
|
435
435
|
* The version of the add-on.
|
@@ -644,7 +644,7 @@ declare namespace EKS {
|
|
644
644
|
*/
|
645
645
|
serviceAccountRoleArn?: RoleArn;
|
646
646
|
/**
|
647
|
-
* How to resolve
|
647
|
+
* How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are handled based on the value you choose: None – If the self-managed version of the add-on is installed on your cluster, Amazon EKS doesn't change the value. Creation of the add-on might fail. Overwrite – If the self-managed version of the add-on is installed on your cluster and the Amazon EKS default value is different than the existing value, Amazon EKS changes the value to the Amazon EKS default value. Preserve – Not supported. You can set this value when updating an add-on though. For more information, see UpdateAddon. If you don't currently have the self-managed version of the add-on installed on your cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default values, regardless of the option that you specify.
|
648
648
|
*/
|
649
649
|
resolveConflicts?: ResolveConflicts;
|
650
650
|
/**
|
@@ -1177,15 +1177,15 @@ declare namespace EKS {
|
|
1177
1177
|
}
|
1178
1178
|
export interface LaunchTemplateSpecification {
|
1179
1179
|
/**
|
1180
|
-
* The name of the launch template.
|
1180
|
+
* The name of the launch template. You must specify either the launch template name or the launch template ID in the request, but not both.
|
1181
1181
|
*/
|
1182
1182
|
name?: String;
|
1183
1183
|
/**
|
1184
|
-
* The version of the launch template
|
1184
|
+
* The launch template version number, $Latest, or $Default. If the value is $Latest, Amazon EKS uses the latest version of the launch template. If the value is $Default, Amazon EKS uses the default version of the launch template. Default: The default version of the launch template.
|
1185
1185
|
*/
|
1186
1186
|
version?: String;
|
1187
1187
|
/**
|
1188
|
-
* The ID of the launch template.
|
1188
|
+
* The ID of the launch template. You must specify either the launch template ID or the launch template name in the request, but not both.
|
1189
1189
|
*/
|
1190
1190
|
id?: String;
|
1191
1191
|
}
|
@@ -1642,7 +1642,7 @@ declare namespace EKS {
|
|
1642
1642
|
*/
|
1643
1643
|
sourceSecurityGroups?: StringList;
|
1644
1644
|
}
|
1645
|
-
export type ResolveConflicts = "OVERWRITE"|"NONE"|string;
|
1645
|
+
export type ResolveConflicts = "OVERWRITE"|"NONE"|"PRESERVE"|string;
|
1646
1646
|
export type RoleArn = string;
|
1647
1647
|
export type String = string;
|
1648
1648
|
export type StringList = String[];
|
@@ -1734,7 +1734,7 @@ declare namespace EKS {
|
|
1734
1734
|
*/
|
1735
1735
|
serviceAccountRoleArn?: RoleArn;
|
1736
1736
|
/**
|
1737
|
-
* How to resolve
|
1737
|
+
* How to resolve field value conflicts for an Amazon EKS add-on if you've changed a value from the Amazon EKS default value. Conflicts are handled based on the option you choose: None – Amazon EKS doesn't change the value. The update might fail. Overwrite – Amazon EKS overwrites the changed value back to the Amazon EKS default value. Preserve – Amazon EKS preserves the value. If you choose this option, we recommend that you test any field and value changes on a non-production cluster before updating the add-on on your production cluster.
|
1738
1738
|
*/
|
1739
1739
|
resolveConflicts?: ResolveConflicts;
|
1740
1740
|
/**
|
@@ -853,7 +853,7 @@ declare namespace FSx {
|
|
853
853
|
*/
|
854
854
|
JunctionPath: JunctionPath;
|
855
855
|
/**
|
856
|
-
*
|
856
|
+
* Specifies the security style for the volume. If a volume's security style is not specified, it is automatically set to the root volume's security style. The security style determines the type of permissions that FSx for ONTAP uses to control data access. For more information, see Volume security style in the Amazon FSx for NetApp ONTAP User Guide. Specify one of the following values: UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. MIXED if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients.
|
857
857
|
*/
|
858
858
|
SecurityStyle?: SecurityStyle;
|
859
859
|
/**
|
@@ -1694,7 +1694,7 @@ declare namespace FSx {
|
|
1694
1694
|
}
|
1695
1695
|
export interface FileSystemFailureDetails {
|
1696
1696
|
/**
|
1697
|
-
* A message describing any failures that occurred
|
1697
|
+
* A message describing any failures that occurred.
|
1698
1698
|
*/
|
1699
1699
|
Message?: ErrorMessage;
|
1700
1700
|
}
|
@@ -68,11 +68,11 @@ declare class IdentityStore extends Service {
|
|
68
68
|
*/
|
69
69
|
describeGroup(callback?: (err: AWSError, data: IdentityStore.Types.DescribeGroupResponse) => void): Request<IdentityStore.Types.DescribeGroupResponse, AWSError>;
|
70
70
|
/**
|
71
|
-
* Retrieves membership metadata and attributes from MembershipId in
|
71
|
+
* Retrieves membership metadata and attributes from MembershipId in an identity store.
|
72
72
|
*/
|
73
73
|
describeGroupMembership(params: IdentityStore.Types.DescribeGroupMembershipRequest, callback?: (err: AWSError, data: IdentityStore.Types.DescribeGroupMembershipResponse) => void): Request<IdentityStore.Types.DescribeGroupMembershipResponse, AWSError>;
|
74
74
|
/**
|
75
|
-
* Retrieves membership metadata and attributes from MembershipId in
|
75
|
+
* Retrieves membership metadata and attributes from MembershipId in an identity store.
|
76
76
|
*/
|
77
77
|
describeGroupMembership(callback?: (err: AWSError, data: IdentityStore.Types.DescribeGroupMembershipResponse) => void): Request<IdentityStore.Types.DescribeGroupMembershipResponse, AWSError>;
|
78
78
|
/**
|
@@ -92,11 +92,11 @@ declare class IdentityStore extends Service {
|
|
92
92
|
*/
|
93
93
|
getGroupId(callback?: (err: AWSError, data: IdentityStore.Types.GetGroupIdResponse) => void): Request<IdentityStore.Types.GetGroupIdResponse, AWSError>;
|
94
94
|
/**
|
95
|
-
* Retrieves the MembershipId in
|
95
|
+
* Retrieves the MembershipId in an identity store.
|
96
96
|
*/
|
97
97
|
getGroupMembershipId(params: IdentityStore.Types.GetGroupMembershipIdRequest, callback?: (err: AWSError, data: IdentityStore.Types.GetGroupMembershipIdResponse) => void): Request<IdentityStore.Types.GetGroupMembershipIdResponse, AWSError>;
|
98
98
|
/**
|
99
|
-
* Retrieves the MembershipId in
|
99
|
+
* Retrieves the MembershipId in an identity store.
|
100
100
|
*/
|
101
101
|
getGroupMembershipId(callback?: (err: AWSError, data: IdentityStore.Types.GetGroupMembershipIdResponse) => void): Request<IdentityStore.Types.GetGroupMembershipIdResponse, AWSError>;
|
102
102
|
/**
|
@@ -108,11 +108,11 @@ declare class IdentityStore extends Service {
|
|
108
108
|
*/
|
109
109
|
getUserId(callback?: (err: AWSError, data: IdentityStore.Types.GetUserIdResponse) => void): Request<IdentityStore.Types.GetUserIdResponse, AWSError>;
|
110
110
|
/**
|
111
|
-
*
|
111
|
+
* Checks the user's membership in all requested groups and returns if the member exists in all queried groups.
|
112
112
|
*/
|
113
113
|
isMemberInGroups(params: IdentityStore.Types.IsMemberInGroupsRequest, callback?: (err: AWSError, data: IdentityStore.Types.IsMemberInGroupsResponse) => void): Request<IdentityStore.Types.IsMemberInGroupsResponse, AWSError>;
|
114
114
|
/**
|
115
|
-
*
|
115
|
+
* Checks the user's membership in all requested groups and returns if the member exists in all queried groups.
|
116
116
|
*/
|
117
117
|
isMemberInGroups(callback?: (err: AWSError, data: IdentityStore.Types.IsMemberInGroupsResponse) => void): Request<IdentityStore.Types.IsMemberInGroupsResponse, AWSError>;
|
118
118
|
/**
|
@@ -132,19 +132,19 @@ declare class IdentityStore extends Service {
|
|
132
132
|
*/
|
133
133
|
listGroupMembershipsForMember(callback?: (err: AWSError, data: IdentityStore.Types.ListGroupMembershipsForMemberResponse) => void): Request<IdentityStore.Types.ListGroupMembershipsForMemberResponse, AWSError>;
|
134
134
|
/**
|
135
|
-
*
|
135
|
+
* Lists the attribute name and value of the group that you specified in the search. We only support DisplayName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including GroupId and group DisplayName in the response.
|
136
136
|
*/
|
137
137
|
listGroups(params: IdentityStore.Types.ListGroupsRequest, callback?: (err: AWSError, data: IdentityStore.Types.ListGroupsResponse) => void): Request<IdentityStore.Types.ListGroupsResponse, AWSError>;
|
138
138
|
/**
|
139
|
-
*
|
139
|
+
* Lists the attribute name and value of the group that you specified in the search. We only support DisplayName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including GroupId and group DisplayName in the response.
|
140
140
|
*/
|
141
141
|
listGroups(callback?: (err: AWSError, data: IdentityStore.Types.ListGroupsResponse) => void): Request<IdentityStore.Types.ListGroupsResponse, AWSError>;
|
142
142
|
/**
|
143
|
-
*
|
143
|
+
* Lists the attribute name and value of the user that you specified in the search. We only support UserName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including UserId and UserName in the response.
|
144
144
|
*/
|
145
145
|
listUsers(params: IdentityStore.Types.ListUsersRequest, callback?: (err: AWSError, data: IdentityStore.Types.ListUsersResponse) => void): Request<IdentityStore.Types.ListUsersResponse, AWSError>;
|
146
146
|
/**
|
147
|
-
*
|
147
|
+
* Lists the attribute name and value of the user that you specified in the search. We only support UserName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including UserId and UserName in the response.
|
148
148
|
*/
|
149
149
|
listUsers(callback?: (err: AWSError, data: IdentityStore.Types.ListUsersResponse) => void): Request<IdentityStore.Types.ListUsersResponse, AWSError>;
|
150
150
|
/**
|
@@ -195,7 +195,7 @@ declare namespace IdentityStore {
|
|
195
195
|
*/
|
196
196
|
Type?: SensitiveStringType;
|
197
197
|
/**
|
198
|
-
* A
|
198
|
+
* A Boolean value representing whether this is the primary address for the associated resource.
|
199
199
|
*/
|
200
200
|
Primary?: SensitiveBooleanType;
|
201
201
|
}
|
@@ -216,7 +216,7 @@ declare namespace IdentityStore {
|
|
216
216
|
*/
|
217
217
|
AttributePath: AttributePath;
|
218
218
|
/**
|
219
|
-
* The value of the attribute.
|
219
|
+
* The value of the attribute. This is a Document type. This type is not supported by Java V1, Go V1, and older versions of the AWS CLI.
|
220
220
|
*/
|
221
221
|
AttributeValue?: AttributeValue;
|
222
222
|
}
|
@@ -240,7 +240,7 @@ declare namespace IdentityStore {
|
|
240
240
|
}
|
241
241
|
export interface CreateGroupMembershipResponse {
|
242
242
|
/**
|
243
|
-
* The identifier for a GroupMembership in
|
243
|
+
* The identifier for a newly created GroupMembership in an identity store.
|
244
244
|
*/
|
245
245
|
MembershipId: ResourceId;
|
246
246
|
/**
|
@@ -278,7 +278,7 @@ declare namespace IdentityStore {
|
|
278
278
|
*/
|
279
279
|
IdentityStoreId: IdentityStoreId;
|
280
280
|
/**
|
281
|
-
* A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation.
|
281
|
+
* A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store.
|
282
282
|
*/
|
283
283
|
UserName?: UserName;
|
284
284
|
/**
|
@@ -346,7 +346,7 @@ declare namespace IdentityStore {
|
|
346
346
|
*/
|
347
347
|
IdentityStoreId: IdentityStoreId;
|
348
348
|
/**
|
349
|
-
* The identifier for a GroupMembership in
|
349
|
+
* The identifier for a GroupMembership in an identity store.
|
350
350
|
*/
|
351
351
|
MembershipId: ResourceId;
|
352
352
|
}
|
@@ -382,7 +382,7 @@ declare namespace IdentityStore {
|
|
382
382
|
*/
|
383
383
|
IdentityStoreId: IdentityStoreId;
|
384
384
|
/**
|
385
|
-
* The identifier for a GroupMembership in
|
385
|
+
* The identifier for a GroupMembership in an identity store.
|
386
386
|
*/
|
387
387
|
MembershipId: ResourceId;
|
388
388
|
}
|
@@ -392,7 +392,7 @@ declare namespace IdentityStore {
|
|
392
392
|
*/
|
393
393
|
IdentityStoreId: IdentityStoreId;
|
394
394
|
/**
|
395
|
-
* The identifier for a GroupMembership in
|
395
|
+
* The identifier for a GroupMembership in an identity store.
|
396
396
|
*/
|
397
397
|
MembershipId: ResourceId;
|
398
398
|
/**
|
@@ -445,7 +445,7 @@ declare namespace IdentityStore {
|
|
445
445
|
}
|
446
446
|
export interface DescribeUserResponse {
|
447
447
|
/**
|
448
|
-
*
|
448
|
+
* A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store.
|
449
449
|
*/
|
450
450
|
UserName?: UserName;
|
451
451
|
/**
|
@@ -519,7 +519,7 @@ declare namespace IdentityStore {
|
|
519
519
|
*/
|
520
520
|
Type?: SensitiveStringType;
|
521
521
|
/**
|
522
|
-
* A
|
522
|
+
* A Boolean value representing whether this is the primary email address for the associated resource.
|
523
523
|
*/
|
524
524
|
Primary?: SensitiveBooleanType;
|
525
525
|
}
|
@@ -554,7 +554,7 @@ declare namespace IdentityStore {
|
|
554
554
|
*/
|
555
555
|
IdentityStoreId: IdentityStoreId;
|
556
556
|
/**
|
557
|
-
* A unique identifier for
|
557
|
+
* A unique identifier for an identity resource that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the group or a unique attribute. For example, a unique GroupDisplayName.
|
558
558
|
*/
|
559
559
|
AlternateIdentifier: AlternateIdentifier;
|
560
560
|
}
|
@@ -584,7 +584,7 @@ declare namespace IdentityStore {
|
|
584
584
|
}
|
585
585
|
export interface GetGroupMembershipIdResponse {
|
586
586
|
/**
|
587
|
-
* The identifier for a GroupMembership in
|
587
|
+
* The identifier for a GroupMembership in an identity store.
|
588
588
|
*/
|
589
589
|
MembershipId: ResourceId;
|
590
590
|
/**
|
@@ -598,7 +598,7 @@ declare namespace IdentityStore {
|
|
598
598
|
*/
|
599
599
|
IdentityStoreId: IdentityStoreId;
|
600
600
|
/**
|
601
|
-
*
|
601
|
+
* A unique identifier for an identity resource that is not the primary identifier.
|
602
602
|
*/
|
603
603
|
AlternateIdentifier: AlternateIdentifier;
|
604
604
|
}
|
@@ -642,7 +642,7 @@ declare namespace IdentityStore {
|
|
642
642
|
*/
|
643
643
|
IdentityStoreId: IdentityStoreId;
|
644
644
|
/**
|
645
|
-
* The identifier for a GroupMembership object in
|
645
|
+
* The identifier for a GroupMembership object in an identity store.
|
646
646
|
*/
|
647
647
|
MembershipId?: ResourceId;
|
648
648
|
/**
|
@@ -688,7 +688,7 @@ declare namespace IdentityStore {
|
|
688
688
|
}
|
689
689
|
export interface IsMemberInGroupsResponse {
|
690
690
|
/**
|
691
|
-
*
|
691
|
+
* A list containing the results of membership existence checks.
|
692
692
|
*/
|
693
693
|
Results: GroupMembershipExistenceResults;
|
694
694
|
}
|
@@ -706,7 +706,7 @@ declare namespace IdentityStore {
|
|
706
706
|
*/
|
707
707
|
MaxResults?: MaxResults;
|
708
708
|
/**
|
709
|
-
* The pagination token used for the ListUsers, ListGroups and ListGroupMemberships API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.
|
709
|
+
* The pagination token used for the ListUsers, ListGroups, and ListGroupMemberships API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.
|
710
710
|
*/
|
711
711
|
NextToken?: NextToken;
|
712
712
|
}
|
@@ -716,7 +716,7 @@ declare namespace IdentityStore {
|
|
716
716
|
*/
|
717
717
|
GroupMemberships: GroupMemberships;
|
718
718
|
/**
|
719
|
-
* The pagination token used for the ListUsers, ListGroups and ListGroupMemberships API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.
|
719
|
+
* The pagination token used for the ListUsers, ListGroups, and ListGroupMemberships API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.
|
720
720
|
*/
|
721
721
|
NextToken?: NextToken;
|
722
722
|
}
|
@@ -730,7 +730,7 @@ declare namespace IdentityStore {
|
|
730
730
|
*/
|
731
731
|
GroupId: ResourceId;
|
732
732
|
/**
|
733
|
-
* The maximum number of results to be returned per request. This parameter is used in
|
733
|
+
* The maximum number of results to be returned per request. This parameter is used in all List requests to specify how many results to return in one page.
|
734
734
|
*/
|
735
735
|
MaxResults?: MaxResults;
|
736
736
|
/**
|
@@ -744,7 +744,7 @@ declare namespace IdentityStore {
|
|
744
744
|
*/
|
745
745
|
GroupMemberships: GroupMemberships;
|
746
746
|
/**
|
747
|
-
* The pagination token used for the ListUsers, ListGroups and ListGroupMemberships API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.
|
747
|
+
* The pagination token used for the ListUsers, ListGroups, and ListGroupMemberships API operations. This value is generated by the identity store service. It is returned in the API response if the total results are more than the size of one page. This token is also returned when it is used in the API request to search for the next page.
|
748
748
|
*/
|
749
749
|
NextToken?: NextToken;
|
750
750
|
}
|
@@ -762,7 +762,7 @@ declare namespace IdentityStore {
|
|
762
762
|
*/
|
763
763
|
NextToken?: NextToken;
|
764
764
|
/**
|
765
|
-
* A list of Filter objects
|
765
|
+
* A list of Filter objects, which is used in the ListUsers and ListGroups requests.
|
766
766
|
*/
|
767
767
|
Filters?: Filters;
|
768
768
|
}
|
@@ -790,7 +790,7 @@ declare namespace IdentityStore {
|
|
790
790
|
*/
|
791
791
|
NextToken?: NextToken;
|
792
792
|
/**
|
793
|
-
* A list of Filter objects
|
793
|
+
* A list of Filter objects, which is used in the ListUsers and ListGroups requests.
|
794
794
|
*/
|
795
795
|
Filters?: Filters;
|
796
796
|
}
|
@@ -848,7 +848,7 @@ declare namespace IdentityStore {
|
|
848
848
|
*/
|
849
849
|
Type?: SensitiveStringType;
|
850
850
|
/**
|
851
|
-
* A
|
851
|
+
* A Boolean value representing whether this is the primary phone number for the associated resource.
|
852
852
|
*/
|
853
853
|
Primary?: SensitiveBooleanType;
|
854
854
|
}
|
@@ -862,7 +862,7 @@ declare namespace IdentityStore {
|
|
862
862
|
*/
|
863
863
|
AttributePath: AttributePath;
|
864
864
|
/**
|
865
|
-
* The value of the attribute.
|
865
|
+
* The value of the attribute. This is a Document type. This type is not supported by Java V1, Go V1, and older versions of the AWS CLI.
|
866
866
|
*/
|
867
867
|
AttributeValue: AttributeValue;
|
868
868
|
}
|
@@ -900,7 +900,7 @@ declare namespace IdentityStore {
|
|
900
900
|
}
|
901
901
|
export interface User {
|
902
902
|
/**
|
903
|
-
*
|
903
|
+
* A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store.
|
904
904
|
*/
|
905
905
|
UserName?: UserName;
|
906
906
|
/**
|
@@ -944,7 +944,7 @@ declare namespace IdentityStore {
|
|
944
944
|
*/
|
945
945
|
UserType?: SensitiveStringType;
|
946
946
|
/**
|
947
|
-
* A string containing the user's title. Possible values depend on each customer's specific needs, so they are left unspecified
|
947
|
+
* A string containing the user's title. Possible values depend on each customer's specific needs, so they are left unspecified.
|
948
948
|
*/
|
949
949
|
Title?: SensitiveStringType;
|
950
950
|
/**
|
@@ -1282,6 +1282,10 @@ declare namespace Inspector2 {
|
|
1282
1282
|
* Details on the date and time a finding was first seen used to filter findings.
|
1283
1283
|
*/
|
1284
1284
|
firstObservedAt?: DateFilterList;
|
1285
|
+
/**
|
1286
|
+
* Details on whether a fix is available through a version update. This value can be YES, NO, or PARTIAL. A PARTIAL fix means that some, but not all, of the packages identified in the finding have fixes available through updated versions.
|
1287
|
+
*/
|
1288
|
+
fixAvailable?: StringFilterList;
|
1285
1289
|
/**
|
1286
1290
|
* The Amazon Inspector score to filter on.
|
1287
1291
|
*/
|
@@ -1364,6 +1368,10 @@ declare namespace Inspector2 {
|
|
1364
1368
|
* The date and time that the finding was first observed.
|
1365
1369
|
*/
|
1366
1370
|
firstObservedAt: DateTimeTimestamp;
|
1371
|
+
/**
|
1372
|
+
* Details on whether a fix is available through a version update. This value can be YES, NO, or PARTIAL. A PARTIAL fix means that some, but not all, of the packages identified in the finding have fixes available through updated versions.
|
1373
|
+
*/
|
1374
|
+
fixAvailable?: FixAvailable;
|
1367
1375
|
/**
|
1368
1376
|
* The Amazon Inspector score given to the finding.
|
1369
1377
|
*/
|
@@ -1448,6 +1456,7 @@ declare namespace Inspector2 {
|
|
1448
1456
|
severityCounts?: SeverityCounts;
|
1449
1457
|
}
|
1450
1458
|
export type FindingTypeSortBy = "CRITICAL"|"HIGH"|"ALL"|string;
|
1459
|
+
export type FixAvailable = "YES"|"NO"|"PARTIAL"|string;
|
1451
1460
|
export interface FreeTrialAccountInfo {
|
1452
1461
|
/**
|
1453
1462
|
* The account associated with the Amazon Inspector free trial information.
|
@@ -2050,7 +2059,7 @@ declare namespace Inspector2 {
|
|
2050
2059
|
/**
|
2051
2060
|
* The packages impacted by this vulnerability.
|
2052
2061
|
*/
|
2053
|
-
vulnerablePackages
|
2062
|
+
vulnerablePackages?: VulnerablePackageList;
|
2054
2063
|
}
|
2055
2064
|
export interface Permission {
|
2056
2065
|
/**
|
@@ -2224,7 +2233,7 @@ declare namespace Inspector2 {
|
|
2224
2233
|
statusCode: ScanStatusCode;
|
2225
2234
|
}
|
2226
2235
|
export type ScanStatusCode = "ACTIVE"|"INACTIVE"|string;
|
2227
|
-
export type ScanStatusReason = "PENDING_INITIAL_SCAN"|"ACCESS_DENIED"|"INTERNAL_ERROR"|"UNMANAGED_EC2_INSTANCE"|"UNSUPPORTED_OS"|"SCAN_ELIGIBILITY_EXPIRED"|"RESOURCE_TERMINATED"|"SUCCESSFUL"|"NO_RESOURCES_FOUND"|"IMAGE_SIZE_EXCEEDED"|"SCAN_FREQUENCY_MANUAL"|"SCAN_FREQUENCY_SCAN_ON_PUSH"|"EC2_INSTANCE_STOPPED"|"PENDING_DISABLE"|string;
|
2236
|
+
export type ScanStatusReason = "PENDING_INITIAL_SCAN"|"ACCESS_DENIED"|"INTERNAL_ERROR"|"UNMANAGED_EC2_INSTANCE"|"UNSUPPORTED_OS"|"SCAN_ELIGIBILITY_EXPIRED"|"RESOURCE_TERMINATED"|"SUCCESSFUL"|"NO_RESOURCES_FOUND"|"IMAGE_SIZE_EXCEEDED"|"SCAN_FREQUENCY_MANUAL"|"SCAN_FREQUENCY_SCAN_ON_PUSH"|"EC2_INSTANCE_STOPPED"|"PENDING_DISABLE"|"NO_INVENTORY"|"STALE_INVENTORY"|string;
|
2228
2237
|
export type ScanType = "NETWORK"|"PACKAGE"|string;
|
2229
2238
|
export type Service = "EC2"|"ECR"|string;
|
2230
2239
|
export type Severity = "INFORMATIONAL"|"LOW"|"MEDIUM"|"HIGH"|"CRITICAL"|"UNTRIAGED"|string;
|
@@ -2487,6 +2496,10 @@ declare namespace Inspector2 {
|
|
2487
2496
|
* The release of the vulnerable package.
|
2488
2497
|
*/
|
2489
2498
|
release?: PackageRelease;
|
2499
|
+
/**
|
2500
|
+
* The code to run in your environment to update packages with a fix available.
|
2501
|
+
*/
|
2502
|
+
remediation?: VulnerablePackageRemediation;
|
2490
2503
|
/**
|
2491
2504
|
* The source layer hash of the vulnerable package.
|
2492
2505
|
*/
|
@@ -2497,6 +2510,7 @@ declare namespace Inspector2 {
|
|
2497
2510
|
version: PackageVersion;
|
2498
2511
|
}
|
2499
2512
|
export type VulnerablePackageList = VulnerablePackage[];
|
2513
|
+
export type VulnerablePackageRemediation = string;
|
2500
2514
|
/**
|
2501
2515
|
* 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.
|
2502
2516
|
*/
|
@@ -101,11 +101,11 @@ declare class IoTSiteWise extends Service {
|
|
101
101
|
*/
|
102
102
|
createAssetModel(callback?: (err: AWSError, data: IoTSiteWise.Types.CreateAssetModelResponse) => void): Request<IoTSiteWise.Types.CreateAssetModelResponse, AWSError>;
|
103
103
|
/**
|
104
|
-
*
|
104
|
+
* Defines a job to ingest data to IoT SiteWise from Amazon S3. For more information, see Create a bulk import job (CLI) in the Amazon Simple Storage Service User Guide. You must enable IoT SiteWise to export data to Amazon S3 before you create a bulk import job. For more information about how to configure storage settings, see PutStorageConfiguration.
|
105
105
|
*/
|
106
106
|
createBulkImportJob(params: IoTSiteWise.Types.CreateBulkImportJobRequest, callback?: (err: AWSError, data: IoTSiteWise.Types.CreateBulkImportJobResponse) => void): Request<IoTSiteWise.Types.CreateBulkImportJobResponse, AWSError>;
|
107
107
|
/**
|
108
|
-
*
|
108
|
+
* Defines a job to ingest data to IoT SiteWise from Amazon S3. For more information, see Create a bulk import job (CLI) in the Amazon Simple Storage Service User Guide. You must enable IoT SiteWise to export data to Amazon S3 before you create a bulk import job. For more information about how to configure storage settings, see PutStorageConfiguration.
|
109
109
|
*/
|
110
110
|
createBulkImportJob(callback?: (err: AWSError, data: IoTSiteWise.Types.CreateBulkImportJobResponse) => void): Request<IoTSiteWise.Types.CreateBulkImportJobResponse, AWSError>;
|
111
111
|
/**
|
@@ -237,11 +237,11 @@ declare class IoTSiteWise extends Service {
|
|
237
237
|
*/
|
238
238
|
describeAssetProperty(callback?: (err: AWSError, data: IoTSiteWise.Types.DescribeAssetPropertyResponse) => void): Request<IoTSiteWise.Types.DescribeAssetPropertyResponse, AWSError>;
|
239
239
|
/**
|
240
|
-
*
|
240
|
+
* Retrieves information about a bulk import job request. For more information, see Describe a bulk import job (CLI) in the Amazon Simple Storage Service User Guide.
|
241
241
|
*/
|
242
242
|
describeBulkImportJob(params: IoTSiteWise.Types.DescribeBulkImportJobRequest, callback?: (err: AWSError, data: IoTSiteWise.Types.DescribeBulkImportJobResponse) => void): Request<IoTSiteWise.Types.DescribeBulkImportJobResponse, AWSError>;
|
243
243
|
/**
|
244
|
-
*
|
244
|
+
* Retrieves information about a bulk import job request. For more information, see Describe a bulk import job (CLI) in the Amazon Simple Storage Service User Guide.
|
245
245
|
*/
|
246
246
|
describeBulkImportJob(callback?: (err: AWSError, data: IoTSiteWise.Types.DescribeBulkImportJobResponse) => void): Request<IoTSiteWise.Types.DescribeBulkImportJobResponse, AWSError>;
|
247
247
|
/**
|
@@ -405,11 +405,11 @@ declare class IoTSiteWise extends Service {
|
|
405
405
|
*/
|
406
406
|
listAssociatedAssets(callback?: (err: AWSError, data: IoTSiteWise.Types.ListAssociatedAssetsResponse) => void): Request<IoTSiteWise.Types.ListAssociatedAssetsResponse, AWSError>;
|
407
407
|
/**
|
408
|
-
*
|
408
|
+
* Retrieves a paginated list of bulk import job requests. For more information, see List bulk import jobs (CLI) in the IoT SiteWise User Guide.
|
409
409
|
*/
|
410
410
|
listBulkImportJobs(params: IoTSiteWise.Types.ListBulkImportJobsRequest, callback?: (err: AWSError, data: IoTSiteWise.Types.ListBulkImportJobsResponse) => void): Request<IoTSiteWise.Types.ListBulkImportJobsResponse, AWSError>;
|
411
411
|
/**
|
412
|
-
*
|
412
|
+
* Retrieves a paginated list of bulk import job requests. For more information, see List bulk import jobs (CLI) in the IoT SiteWise User Guide.
|
413
413
|
*/
|
414
414
|
listBulkImportJobs(callback?: (err: AWSError, data: IoTSiteWise.Types.ListBulkImportJobsResponse) => void): Request<IoTSiteWise.Types.ListBulkImportJobsResponse, AWSError>;
|
415
415
|
/**
|
@@ -1663,7 +1663,7 @@ declare namespace IoTSiteWise {
|
|
1663
1663
|
}
|
1664
1664
|
export interface CreateAssetRequest {
|
1665
1665
|
/**
|
1666
|
-
* A
|
1666
|
+
* A friendly name for the asset.
|
1667
1667
|
*/
|
1668
1668
|
assetName: Name;
|
1669
1669
|
/**
|
@@ -3880,6 +3880,10 @@ declare namespace IoTSiteWise {
|
|
3880
3880
|
* A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
|
3881
3881
|
*/
|
3882
3882
|
clientToken?: ClientToken;
|
3883
|
+
/**
|
3884
|
+
* The unit of measure (such as Newtons or RPM) of the asset property. If you don't specify a value for this parameter, the service uses the value of the assetModelProperty in the asset model.
|
3885
|
+
*/
|
3886
|
+
propertyUnit?: PropertyUnit;
|
3883
3887
|
}
|
3884
3888
|
export interface UpdateAssetRequest {
|
3885
3889
|
/**
|
@@ -3887,7 +3891,7 @@ declare namespace IoTSiteWise {
|
|
3887
3891
|
*/
|
3888
3892
|
assetId: ID;
|
3889
3893
|
/**
|
3890
|
-
* A
|
3894
|
+
* A friendly name for the asset.
|
3891
3895
|
*/
|
3892
3896
|
assetName: Name;
|
3893
3897
|
/**
|
@@ -203,12 +203,14 @@ declare namespace MediaPackage {
|
|
203
203
|
* An optional 128-bit, 16-byte hex value represented by a 32-character string, used in conjunction with the key for encrypting blocks. If you don't specify a value, then MediaPackage creates the constant initialization vector (IV).
|
204
204
|
*/
|
205
205
|
ConstantInitializationVector?: __string;
|
206
|
+
EncryptionMethod?: CmafEncryptionMethod;
|
206
207
|
/**
|
207
208
|
* Time (in seconds) between each encryption key rotation.
|
208
209
|
*/
|
209
210
|
KeyRotationIntervalSeconds?: __integer;
|
210
211
|
SpekeKeyProvider: SpekeKeyProvider;
|
211
212
|
}
|
213
|
+
export type CmafEncryptionMethod = "SAMPLE_AES"|"AES_CTR"|string;
|
212
214
|
export interface CmafPackage {
|
213
215
|
Encryption?: CmafEncryption;
|
214
216
|
/**
|