cdk-docker-image-deployment 0.0.159 → 0.0.160
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 +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +8 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +37 -9
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +339 -271
- package/node_modules/aws-sdk/apis/runtime.lex.v2-2020-08-07.min.json +18 -4
- package/node_modules/aws-sdk/clients/chimesdkmeetings.d.ts +14 -14
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +39 -15
- package/node_modules/aws-sdk/clients/evidently.d.ts +11 -11
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +152 -52
- package/node_modules/aws-sdk/clients/lexruntimev2.d.ts +19 -1
- package/node_modules/aws-sdk/clients/lightsail.d.ts +8 -2
- package/node_modules/aws-sdk/clients/migrationhubrefactorspaces.d.ts +3 -3
- package/node_modules/aws-sdk/clients/workdocs.d.ts +47 -47
- package/node_modules/aws-sdk/clients/workspaces.d.ts +21 -21
- 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 +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +21 -7
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +20 -20
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
|
@@ -237,7 +237,17 @@
|
|
|
237
237
|
"requestAttributes": {
|
|
238
238
|
"shape": "S1e"
|
|
239
239
|
},
|
|
240
|
-
"sessionId": {}
|
|
240
|
+
"sessionId": {},
|
|
241
|
+
"recognizedBotMember": {
|
|
242
|
+
"type": "structure",
|
|
243
|
+
"required": [
|
|
244
|
+
"botId"
|
|
245
|
+
],
|
|
246
|
+
"members": {
|
|
247
|
+
"botId": {},
|
|
248
|
+
"botName": {}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
241
251
|
}
|
|
242
252
|
}
|
|
243
253
|
},
|
|
@@ -272,12 +282,12 @@
|
|
|
272
282
|
"locationName": "sessionId"
|
|
273
283
|
},
|
|
274
284
|
"sessionState": {
|
|
275
|
-
"shape": "
|
|
285
|
+
"shape": "S1v",
|
|
276
286
|
"location": "header",
|
|
277
287
|
"locationName": "x-amz-lex-session-state"
|
|
278
288
|
},
|
|
279
289
|
"requestAttributes": {
|
|
280
|
-
"shape": "
|
|
290
|
+
"shape": "S1v",
|
|
281
291
|
"location": "header",
|
|
282
292
|
"locationName": "x-amz-lex-request-attributes"
|
|
283
293
|
},
|
|
@@ -332,6 +342,10 @@
|
|
|
332
342
|
},
|
|
333
343
|
"audioStream": {
|
|
334
344
|
"shape": "S1q"
|
|
345
|
+
},
|
|
346
|
+
"recognizedBotMember": {
|
|
347
|
+
"location": "header",
|
|
348
|
+
"locationName": "x-amz-lex-recognized-bot-member"
|
|
335
349
|
}
|
|
336
350
|
},
|
|
337
351
|
"payload": "audioStream"
|
|
@@ -595,7 +609,7 @@
|
|
|
595
609
|
"type": "blob",
|
|
596
610
|
"streaming": true
|
|
597
611
|
},
|
|
598
|
-
"
|
|
612
|
+
"S1v": {
|
|
599
613
|
"type": "string",
|
|
600
614
|
"sensitive": true
|
|
601
615
|
}
|
|
@@ -100,19 +100,19 @@ declare class ChimeSDKMeetings extends Service {
|
|
|
100
100
|
*/
|
|
101
101
|
listTagsForResource(callback?: (err: AWSError, data: ChimeSDKMeetings.Types.ListTagsForResourceResponse) => void): Request<ChimeSDKMeetings.Types.ListTagsForResourceResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* Starts transcription for the specified meetingId.
|
|
103
|
+
* Starts transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the AWS Service Terms, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.
|
|
104
104
|
*/
|
|
105
105
|
startMeetingTranscription(params: ChimeSDKMeetings.Types.StartMeetingTranscriptionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* Starts transcription for the specified meetingId.
|
|
107
|
+
* Starts transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the AWS Service Terms, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.
|
|
108
108
|
*/
|
|
109
109
|
startMeetingTranscription(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
110
110
|
/**
|
|
111
|
-
* Stops transcription for the specified meetingId.
|
|
111
|
+
* Stops transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the AWS Service Terms, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.
|
|
112
112
|
*/
|
|
113
113
|
stopMeetingTranscription(params: ChimeSDKMeetings.Types.StopMeetingTranscriptionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
114
114
|
/**
|
|
115
|
-
* Stops transcription for the specified meetingId.
|
|
115
|
+
* Stops transcription for the specified meetingId. For more information, refer to Using Amazon Chime SDK live transcription in the Amazon Chime SDK Developer Guide. Amazon Chime SDK live transcription is powered by Amazon Transcribe. Use of Amazon Transcribe is subject to the AWS Service Terms, including the terms specific to the AWS Machine Learning and Artificial Intelligence Services.
|
|
116
116
|
*/
|
|
117
117
|
stopMeetingTranscription(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
118
118
|
/**
|
|
@@ -145,7 +145,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
145
145
|
export type Arn = string;
|
|
146
146
|
export interface Attendee {
|
|
147
147
|
/**
|
|
148
|
-
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
148
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive.
|
|
149
149
|
*/
|
|
150
150
|
ExternalUserId?: ExternalUserId;
|
|
151
151
|
/**
|
|
@@ -228,7 +228,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
228
228
|
export type ClientRequestToken = string;
|
|
229
229
|
export interface CreateAttendeeError {
|
|
230
230
|
/**
|
|
231
|
-
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
231
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive.
|
|
232
232
|
*/
|
|
233
233
|
ExternalUserId?: ExternalUserId;
|
|
234
234
|
/**
|
|
@@ -246,7 +246,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
246
246
|
*/
|
|
247
247
|
MeetingId: GuidString;
|
|
248
248
|
/**
|
|
249
|
-
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
249
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix.
|
|
250
250
|
*/
|
|
251
251
|
ExternalUserId: ExternalUserId;
|
|
252
252
|
/**
|
|
@@ -256,7 +256,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
256
256
|
}
|
|
257
257
|
export interface CreateAttendeeRequestItem {
|
|
258
258
|
/**
|
|
259
|
-
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.
|
|
259
|
+
* The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive.
|
|
260
260
|
*/
|
|
261
261
|
ExternalUserId: ExternalUserId;
|
|
262
262
|
/**
|
|
@@ -285,7 +285,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
285
285
|
*/
|
|
286
286
|
MeetingHostId?: ExternalUserId;
|
|
287
287
|
/**
|
|
288
|
-
* The external meeting ID.
|
|
288
|
+
* The external meeting ID. Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive.
|
|
289
289
|
*/
|
|
290
290
|
ExternalMeetingId: ExternalMeetingId;
|
|
291
291
|
/**
|
|
@@ -305,7 +305,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
305
305
|
*/
|
|
306
306
|
TenantIds?: TenantIdList;
|
|
307
307
|
/**
|
|
308
|
-
* Applies one or more tags to an Amazon Chime SDK meeting. Note the following: Not all resources have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API. If the resource doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service. Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the AWS General Reference. You can only tag resources that are located in the specified AWS Region for the AWS account. To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the documentation for each service. Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be used for private or sensitive data. Minimum permissions
|
|
308
|
+
* Applies one or more tags to an Amazon Chime SDK meeting. Note the following: Not all resources have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API. If the resource doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service. Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the AWS General Reference. You can only tag resources that are located in the specified AWS Region for the AWS account. To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the documentation for each service. Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be used for private or sensitive data. Minimum permissions In addition to the tag:TagResources permission required by this operation, you must also have the tagging permission defined by the service that created the resource. For example, to tag a ChimeSDKMeetings instance using the TagResources operation, you must have both of the following permissions: tag:TagResources ChimeSDKMeetings:CreateTags Some services might have specific requirements for tagging some resources. For example, to tag an Amazon S3 bucket, you must also have the s3:GetBucketTagging permission. If the expected minimum permissions don't work, check the documentation for that service's tagging APIs for more information.
|
|
309
309
|
*/
|
|
310
310
|
Tags?: TagList;
|
|
311
311
|
}
|
|
@@ -329,7 +329,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
329
329
|
*/
|
|
330
330
|
MeetingHostId?: ExternalUserId;
|
|
331
331
|
/**
|
|
332
|
-
* The external meeting ID.
|
|
332
|
+
* The external meeting ID. Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive.
|
|
333
333
|
*/
|
|
334
334
|
ExternalMeetingId: ExternalMeetingId;
|
|
335
335
|
/**
|
|
@@ -586,7 +586,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
586
586
|
*/
|
|
587
587
|
MeetingHostId?: ExternalUserId;
|
|
588
588
|
/**
|
|
589
|
-
* The external meeting ID.
|
|
589
|
+
* The external meeting ID. Pattern: [-_&@+=,(){}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]* Values that begin with aws: are reserved. You can't configure a value that uses this prefix. Case insensitive.
|
|
590
590
|
*/
|
|
591
591
|
ExternalMeetingId?: ExternalMeetingId;
|
|
592
592
|
/**
|
|
@@ -598,7 +598,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
598
598
|
*/
|
|
599
599
|
MediaPlacement?: MediaPlacement;
|
|
600
600
|
/**
|
|
601
|
-
* The features available to a meeting, such as
|
|
601
|
+
* The features available to a meeting, such as echo reduction.
|
|
602
602
|
*/
|
|
603
603
|
MeetingFeatures?: MeetingFeaturesConfiguration;
|
|
604
604
|
/**
|
|
@@ -617,7 +617,7 @@ declare namespace ChimeSDKMeetings {
|
|
|
617
617
|
export type MeetingFeatureStatus = "AVAILABLE"|"UNAVAILABLE"|string;
|
|
618
618
|
export interface MeetingFeaturesConfiguration {
|
|
619
619
|
/**
|
|
620
|
-
* The configuration settings for the audio features available to a meeting.
|
|
620
|
+
* The configuration settings for the audio features available to a meeting.
|
|
621
621
|
*/
|
|
622
622
|
Audio?: AudioFeatures;
|
|
623
623
|
}
|
|
@@ -28,11 +28,11 @@ declare class EMRcontainers extends Service {
|
|
|
28
28
|
*/
|
|
29
29
|
createJobTemplate(callback?: (err: AWSError, data: EMRcontainers.Types.CreateJobTemplateResponse) => void): Request<EMRcontainers.Types.CreateJobTemplateResponse, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* Creates a managed endpoint. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
31
|
+
* Creates a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
32
32
|
*/
|
|
33
33
|
createManagedEndpoint(params: EMRcontainers.Types.CreateManagedEndpointRequest, callback?: (err: AWSError, data: EMRcontainers.Types.CreateManagedEndpointResponse) => void): Request<EMRcontainers.Types.CreateManagedEndpointResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* Creates a managed endpoint. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
35
|
+
* Creates a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
36
36
|
*/
|
|
37
37
|
createManagedEndpoint(callback?: (err: AWSError, data: EMRcontainers.Types.CreateManagedEndpointResponse) => void): Request<EMRcontainers.Types.CreateManagedEndpointResponse, AWSError>;
|
|
38
38
|
/**
|
|
@@ -52,11 +52,11 @@ declare class EMRcontainers extends Service {
|
|
|
52
52
|
*/
|
|
53
53
|
deleteJobTemplate(callback?: (err: AWSError, data: EMRcontainers.Types.DeleteJobTemplateResponse) => void): Request<EMRcontainers.Types.DeleteJobTemplateResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Deletes a managed endpoint. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
55
|
+
* Deletes a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
56
56
|
*/
|
|
57
57
|
deleteManagedEndpoint(params: EMRcontainers.Types.DeleteManagedEndpointRequest, callback?: (err: AWSError, data: EMRcontainers.Types.DeleteManagedEndpointResponse) => void): Request<EMRcontainers.Types.DeleteManagedEndpointResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Deletes a managed endpoint. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
59
|
+
* Deletes a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
60
60
|
*/
|
|
61
61
|
deleteManagedEndpoint(callback?: (err: AWSError, data: EMRcontainers.Types.DeleteManagedEndpointResponse) => void): Request<EMRcontainers.Types.DeleteManagedEndpointResponse, AWSError>;
|
|
62
62
|
/**
|
|
@@ -84,11 +84,11 @@ declare class EMRcontainers extends Service {
|
|
|
84
84
|
*/
|
|
85
85
|
describeJobTemplate(callback?: (err: AWSError, data: EMRcontainers.Types.DescribeJobTemplateResponse) => void): Request<EMRcontainers.Types.DescribeJobTemplateResponse, AWSError>;
|
|
86
86
|
/**
|
|
87
|
-
* Displays detailed information about a managed endpoint. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
87
|
+
* Displays detailed information about a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
88
88
|
*/
|
|
89
89
|
describeManagedEndpoint(params: EMRcontainers.Types.DescribeManagedEndpointRequest, callback?: (err: AWSError, data: EMRcontainers.Types.DescribeManagedEndpointResponse) => void): Request<EMRcontainers.Types.DescribeManagedEndpointResponse, AWSError>;
|
|
90
90
|
/**
|
|
91
|
-
* Displays detailed information about a managed endpoint. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
91
|
+
* Displays detailed information about a managed endpoint. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
92
92
|
*/
|
|
93
93
|
describeManagedEndpoint(callback?: (err: AWSError, data: EMRcontainers.Types.DescribeManagedEndpointResponse) => void): Request<EMRcontainers.Types.DescribeManagedEndpointResponse, AWSError>;
|
|
94
94
|
/**
|
|
@@ -116,11 +116,11 @@ declare class EMRcontainers extends Service {
|
|
|
116
116
|
*/
|
|
117
117
|
listJobTemplates(callback?: (err: AWSError, data: EMRcontainers.Types.ListJobTemplatesResponse) => void): Request<EMRcontainers.Types.ListJobTemplatesResponse, AWSError>;
|
|
118
118
|
/**
|
|
119
|
-
* Lists managed endpoints based on a set of parameters. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
119
|
+
* Lists managed endpoints based on a set of parameters. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
120
120
|
*/
|
|
121
121
|
listManagedEndpoints(params: EMRcontainers.Types.ListManagedEndpointsRequest, callback?: (err: AWSError, data: EMRcontainers.Types.ListManagedEndpointsResponse) => void): Request<EMRcontainers.Types.ListManagedEndpointsResponse, AWSError>;
|
|
122
122
|
/**
|
|
123
|
-
* Lists managed endpoints based on a set of parameters. A managed endpoint is a gateway that connects EMR Studio to Amazon EMR on EKS so that EMR Studio can communicate with your virtual cluster.
|
|
123
|
+
* Lists managed endpoints based on a set of parameters. A managed endpoint is a gateway that connects Amazon EMR Studio to Amazon EMR on EKS so that Amazon EMR Studio can communicate with your virtual cluster.
|
|
124
124
|
*/
|
|
125
125
|
listManagedEndpoints(callback?: (err: AWSError, data: EMRcontainers.Types.ListManagedEndpointsResponse) => void): Request<EMRcontainers.Types.ListManagedEndpointsResponse, AWSError>;
|
|
126
126
|
/**
|
|
@@ -148,11 +148,11 @@ declare class EMRcontainers extends Service {
|
|
|
148
148
|
*/
|
|
149
149
|
startJobRun(callback?: (err: AWSError, data: EMRcontainers.Types.StartJobRunResponse) => void): Request<EMRcontainers.Types.StartJobRunResponse, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
* Assigns tags to resources. A tag is a label that you assign to an
|
|
151
|
+
* Assigns tags to resources. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your Amazon Web Services resources by attributes such as purpose, owner, or environment. When you have many resources of the same type, you can quickly identify a specific resource based on the tags you've assigned to it. For example, you can define a set of tags for your Amazon EMR on EKS clusters to help you track each cluster's owner and stack level. We recommend that you devise a consistent set of tag keys for each resource type. You can then search and filter the resources based on the tags that you add.
|
|
152
152
|
*/
|
|
153
153
|
tagResource(params: EMRcontainers.Types.TagResourceRequest, callback?: (err: AWSError, data: EMRcontainers.Types.TagResourceResponse) => void): Request<EMRcontainers.Types.TagResourceResponse, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
* Assigns tags to resources. A tag is a label that you assign to an
|
|
155
|
+
* Assigns tags to resources. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your Amazon Web Services resources by attributes such as purpose, owner, or environment. When you have many resources of the same type, you can quickly identify a specific resource based on the tags you've assigned to it. For example, you can define a set of tags for your Amazon EMR on EKS clusters to help you track each cluster's owner and stack level. We recommend that you devise a consistent set of tag keys for each resource type. You can then search and filter the resources based on the tags that you add.
|
|
156
156
|
*/
|
|
157
157
|
tagResource(callback?: (err: AWSError, data: EMRcontainers.Types.TagResourceResponse) => void): Request<EMRcontainers.Types.TagResourceResponse, AWSError>;
|
|
158
158
|
/**
|
|
@@ -236,13 +236,13 @@ declare namespace EMRcontainers {
|
|
|
236
236
|
}
|
|
237
237
|
export interface ContainerInfo {
|
|
238
238
|
/**
|
|
239
|
-
* The information about the EKS cluster.
|
|
239
|
+
* The information about the Amazon EKS cluster.
|
|
240
240
|
*/
|
|
241
241
|
eksInfo?: EksInfo;
|
|
242
242
|
}
|
|
243
243
|
export interface ContainerProvider {
|
|
244
244
|
/**
|
|
245
|
-
* The type of the container provider. EKS is the only supported type as of now.
|
|
245
|
+
* The type of the container provider. Amazon EKS is the only supported type as of now.
|
|
246
246
|
*/
|
|
247
247
|
type: ContainerProviderType;
|
|
248
248
|
/**
|
|
@@ -486,7 +486,7 @@ declare namespace EMRcontainers {
|
|
|
486
486
|
}
|
|
487
487
|
export interface EksInfo {
|
|
488
488
|
/**
|
|
489
|
-
* The namespaces of the EKS cluster.
|
|
489
|
+
* The namespaces of the Amazon EKS cluster.
|
|
490
490
|
*/
|
|
491
491
|
namespace?: KubernetesNamespace;
|
|
492
492
|
}
|
|
@@ -652,6 +652,14 @@ declare namespace EMRcontainers {
|
|
|
652
652
|
* The assigned tags of the job run.
|
|
653
653
|
*/
|
|
654
654
|
tags?: TagMap;
|
|
655
|
+
/**
|
|
656
|
+
* The configuration of the retry policy that the job runs on.
|
|
657
|
+
*/
|
|
658
|
+
retryPolicyConfiguration?: RetryPolicyConfiguration;
|
|
659
|
+
/**
|
|
660
|
+
* The current status of the retry policy executed on the job.
|
|
661
|
+
*/
|
|
662
|
+
retryPolicyExecution?: RetryPolicyExecution;
|
|
655
663
|
}
|
|
656
664
|
export type JobRunState = "PENDING"|"SUBMITTED"|"RUNNING"|"FAILED"|"CANCELLED"|"CANCEL_PENDING"|"COMPLETED"|string;
|
|
657
665
|
export type JobRunStates = JobRunState[];
|
|
@@ -847,7 +855,7 @@ declare namespace EMRcontainers {
|
|
|
847
855
|
*/
|
|
848
856
|
containerProviderId?: String1024;
|
|
849
857
|
/**
|
|
850
|
-
* The container provider type of the virtual cluster. EKS is the only supported type as of now.
|
|
858
|
+
* The container provider type of the virtual cluster. Amazon EKS is the only supported type as of now.
|
|
851
859
|
*/
|
|
852
860
|
containerProviderType?: ContainerProviderType;
|
|
853
861
|
/**
|
|
@@ -944,6 +952,18 @@ declare namespace EMRcontainers {
|
|
|
944
952
|
export type RequestIdentityUserArn = string;
|
|
945
953
|
export type ResourceIdString = string;
|
|
946
954
|
export type ResourceNameString = string;
|
|
955
|
+
export interface RetryPolicyConfiguration {
|
|
956
|
+
/**
|
|
957
|
+
* The maximum number of attempts on the job's driver.
|
|
958
|
+
*/
|
|
959
|
+
maxAttempts: JavaInteger;
|
|
960
|
+
}
|
|
961
|
+
export interface RetryPolicyExecution {
|
|
962
|
+
/**
|
|
963
|
+
* The current number of attempts made on the driver of the job.
|
|
964
|
+
*/
|
|
965
|
+
currentAttemptCount: JavaInteger;
|
|
966
|
+
}
|
|
947
967
|
export type RsiArn = string;
|
|
948
968
|
export interface S3MonitoringConfiguration {
|
|
949
969
|
/**
|
|
@@ -1019,6 +1039,10 @@ declare namespace EMRcontainers {
|
|
|
1019
1039
|
* The values of job template parameters to start a job run.
|
|
1020
1040
|
*/
|
|
1021
1041
|
jobTemplateParameters?: TemplateParameterInputMap;
|
|
1042
|
+
/**
|
|
1043
|
+
* The retry policy configuration for the job run.
|
|
1044
|
+
*/
|
|
1045
|
+
retryPolicyConfiguration?: RetryPolicyConfiguration;
|
|
1022
1046
|
}
|
|
1023
1047
|
export interface StartJobRunResponse {
|
|
1024
1048
|
/**
|
|
@@ -1061,7 +1085,7 @@ declare namespace EMRcontainers {
|
|
|
1061
1085
|
export type TemplateParameter = string;
|
|
1062
1086
|
export interface TemplateParameterConfiguration {
|
|
1063
1087
|
/**
|
|
1064
|
-
* The type of the job template parameter. Allowed values are: ‘
|
|
1088
|
+
* The type of the job template parameter. Allowed values are: ‘STRING’, ‘NUMBER’.
|
|
1065
1089
|
*/
|
|
1066
1090
|
type?: TemplateParameterDataType;
|
|
1067
1091
|
/**
|
|
@@ -52,11 +52,11 @@ declare class Evidently extends Service {
|
|
|
52
52
|
*/
|
|
53
53
|
createProject(callback?: (err: AWSError, data: Evidently.Types.CreateProjectResponse) => void): Request<Evidently.Types.CreateProjectResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allows you to define different traffic splits for the different audience segments.
|
|
55
|
+
* Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allows you to define different traffic splits for the different audience segments. For more information about segment pattern syntax, see Segment rule pattern syntax. The pattern that you define for a segment is matched against the value of evaluationContext, which is passed into Evidently in the EvaluateFeature operation, when Evidently assigns a feature variation to a user.
|
|
56
56
|
*/
|
|
57
57
|
createSegment(params: Evidently.Types.CreateSegmentRequest, callback?: (err: AWSError, data: Evidently.Types.CreateSegmentResponse) => void): Request<Evidently.Types.CreateSegmentResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allows you to define different traffic splits for the different audience segments.
|
|
59
|
+
* Use this operation to define a segment of your audience. A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age. Using a segment in an experiment limits that experiment to evaluate only the users who match the segment criteria. Using one or more segments in a launch allows you to define different traffic splits for the different audience segments. For more information about segment pattern syntax, see Segment rule pattern syntax. The pattern that you define for a segment is matched against the value of evaluationContext, which is passed into Evidently in the EvaluateFeature operation, when Evidently assigns a feature variation to a user.
|
|
60
60
|
*/
|
|
61
61
|
createSegment(callback?: (err: AWSError, data: Evidently.Types.CreateSegmentResponse) => void): Request<Evidently.Types.CreateSegmentResponse, AWSError>;
|
|
62
62
|
/**
|
|
@@ -100,11 +100,11 @@ declare class Evidently extends Service {
|
|
|
100
100
|
*/
|
|
101
101
|
deleteSegment(callback?: (err: AWSError, data: Evidently.Types.DeleteSegmentResponse) => void): Request<Evidently.Types.DeleteSegmentResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* This operation assigns a feature variation to one given user session. You pass in an entityID that represents the user. Evidently then checks the evaluation rules and assigns the variation. The first rules that are evaluated are the override rules. If the user's entityID matches an override rule, the user is served the variation specified by that rule.
|
|
103
|
+
* This operation assigns a feature variation to one given user session. You pass in an entityID that represents the user. Evidently then checks the evaluation rules and assigns the variation. The first rules that are evaluated are the override rules. If the user's entityID matches an override rule, the user is served the variation specified by that rule. If there is a current launch with this feature that uses segment overrides, and if the user session's evaluationContext matches a segment rule defined in a segment override, the configuration in the segment overrides is used. For more information about segments, see CreateSegment and Use segments to focus your audience. If there is a launch with no segment overrides, the user might be assigned to a variation in the launch. The chance of this depends on the percentage of users that are allocated to that launch. If the user is enrolled in the launch, the variation they are served depends on the allocation of the various feature variations used for the launch. If the user is not assigned to a launch, and there is an ongoing experiment for this feature, the user might be assigned to a variation in the experiment. The chance of this depends on the percentage of users that are allocated to that experiment. If the experiment uses a segment, then only user sessions with evaluationContext values that match the segment rule are used in the experiment. If the user is enrolled in the experiment, the variation they are served depends on the allocation of the various feature variations used for the experiment. If the user is not assigned to a launch or experiment, they are served the default variation.
|
|
104
104
|
*/
|
|
105
105
|
evaluateFeature(params: Evidently.Types.EvaluateFeatureRequest, callback?: (err: AWSError, data: Evidently.Types.EvaluateFeatureResponse) => void): Request<Evidently.Types.EvaluateFeatureResponse, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* This operation assigns a feature variation to one given user session. You pass in an entityID that represents the user. Evidently then checks the evaluation rules and assigns the variation. The first rules that are evaluated are the override rules. If the user's entityID matches an override rule, the user is served the variation specified by that rule.
|
|
107
|
+
* This operation assigns a feature variation to one given user session. You pass in an entityID that represents the user. Evidently then checks the evaluation rules and assigns the variation. The first rules that are evaluated are the override rules. If the user's entityID matches an override rule, the user is served the variation specified by that rule. If there is a current launch with this feature that uses segment overrides, and if the user session's evaluationContext matches a segment rule defined in a segment override, the configuration in the segment overrides is used. For more information about segments, see CreateSegment and Use segments to focus your audience. If there is a launch with no segment overrides, the user might be assigned to a variation in the launch. The chance of this depends on the percentage of users that are allocated to that launch. If the user is enrolled in the launch, the variation they are served depends on the allocation of the various feature variations used for the launch. If the user is not assigned to a launch, and there is an ongoing experiment for this feature, the user might be assigned to a variation in the experiment. The chance of this depends on the percentage of users that are allocated to that experiment. If the experiment uses a segment, then only user sessions with evaluationContext values that match the segment rule are used in the experiment. If the user is enrolled in the experiment, the variation they are served depends on the allocation of the various feature variations used for the experiment. If the user is not assigned to a launch or experiment, they are served the default variation.
|
|
108
108
|
*/
|
|
109
109
|
evaluateFeature(callback?: (err: AWSError, data: Evidently.Types.EvaluateFeatureResponse) => void): Request<Evidently.Types.EvaluateFeatureResponse, AWSError>;
|
|
110
110
|
/**
|
|
@@ -383,7 +383,7 @@ declare namespace Evidently {
|
|
|
383
383
|
*/
|
|
384
384
|
segment?: SegmentRef;
|
|
385
385
|
/**
|
|
386
|
-
* Assigns one or more tags (key-value pairs) to the experiment. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
|
|
386
|
+
* Assigns one or more tags (key-value pairs) to the experiment. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can associate as many as 50 tags with an experiment. For more information, see Tagging Amazon Web Services resources.
|
|
387
387
|
*/
|
|
388
388
|
tags?: TagMap;
|
|
389
389
|
/**
|
|
@@ -423,7 +423,7 @@ declare namespace Evidently {
|
|
|
423
423
|
*/
|
|
424
424
|
project: ProjectRef;
|
|
425
425
|
/**
|
|
426
|
-
* Assigns one or more tags (key-value pairs) to the feature. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
|
|
426
|
+
* Assigns one or more tags (key-value pairs) to the feature. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can associate as many as 50 tags with a feature. For more information, see Tagging Amazon Web Services resources.
|
|
427
427
|
*/
|
|
428
428
|
tags?: TagMap;
|
|
429
429
|
/**
|
|
@@ -467,7 +467,7 @@ declare namespace Evidently {
|
|
|
467
467
|
*/
|
|
468
468
|
scheduledSplitsConfig?: ScheduledSplitsLaunchConfig;
|
|
469
469
|
/**
|
|
470
|
-
* Assigns one or more tags (key-value pairs) to the launch. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
|
|
470
|
+
* Assigns one or more tags (key-value pairs) to the launch. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can associate as many as 50 tags with a launch. For more information, see Tagging Amazon Web Services resources.
|
|
471
471
|
*/
|
|
472
472
|
tags?: TagMap;
|
|
473
473
|
}
|
|
@@ -495,7 +495,7 @@ declare namespace Evidently {
|
|
|
495
495
|
*/
|
|
496
496
|
name: ProjectName;
|
|
497
497
|
/**
|
|
498
|
-
* Assigns one or more tags (key-value pairs) to the project. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
|
|
498
|
+
* Assigns one or more tags (key-value pairs) to the project. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can associate as many as 50 tags with a project. For more information, see Tagging Amazon Web Services resources.
|
|
499
499
|
*/
|
|
500
500
|
tags?: TagMap;
|
|
501
501
|
}
|
|
@@ -519,7 +519,7 @@ declare namespace Evidently {
|
|
|
519
519
|
*/
|
|
520
520
|
pattern: SegmentPattern;
|
|
521
521
|
/**
|
|
522
|
-
* Assigns one or more tags (key-value pairs) to the segment. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
|
|
522
|
+
* Assigns one or more tags (key-value pairs) to the segment. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can associate as many as 50 tags with a segment. For more information, see Tagging Amazon Web Services resources.
|
|
523
523
|
*/
|
|
524
524
|
tags?: TagMap;
|
|
525
525
|
}
|
|
@@ -596,7 +596,7 @@ declare namespace Evidently {
|
|
|
596
596
|
*/
|
|
597
597
|
entityId: EntityId;
|
|
598
598
|
/**
|
|
599
|
-
* A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently from the user session. Evidently can use this value to match user sessions with defined audience segments. For more information, see Use segments to focus your audience.
|
|
599
|
+
* A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently from the user session. Evidently can use this value to match user sessions with defined audience segments. For more information, see Use segments to focus your audience. If you include this parameter, the value must be a JSON object. A JSON array is not supported.
|
|
600
600
|
*/
|
|
601
601
|
evaluationContext?: JsonValue;
|
|
602
602
|
/**
|
|
@@ -1731,7 +1731,7 @@ declare namespace Evidently {
|
|
|
1731
1731
|
}
|
|
1732
1732
|
export interface ScheduledSplitConfig {
|
|
1733
1733
|
/**
|
|
1734
|
-
* The traffic allocation percentages among the feature variations during one step of a launch. This is a set of key-value pairs. The keys are variation names. The values represent the percentage of traffic to allocate to that variation during this step.
|
|
1734
|
+
* The traffic allocation percentages among the feature variations during one step of a launch. This is a set of key-value pairs. The keys are variation names. The values represent the percentage of traffic to allocate to that variation during this step. The values is expressed in thousandths of a percent, so assigning a weight of 50000 assigns 50% of traffic to that variation. If the sum of the weights for all the variations in a segment override does not add up to 100,000, then the remaining traffic that matches this segment is not assigned by this segment override, and instead moves on to the next segment override or the default traffic split.
|
|
1735
1735
|
*/
|
|
1736
1736
|
groupWeights: GroupToWeightMap;
|
|
1737
1737
|
/**
|