cdk-comprehend-s3olap 2.0.120 → 2.0.122
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/@esbuild/linux-x64/bin/esbuild +0 -0
- package/node_modules/@esbuild/linux-x64/package.json +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +196 -187
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +82 -15
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +56 -32
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +224 -138
- package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
- package/node_modules/aws-sdk/clients/ecs.d.ts +24 -24
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +67 -7
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -1
- package/node_modules/aws-sdk/clients/omics.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rekognition.d.ts +114 -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 +2532 -875
- package/node_modules/aws-sdk/dist/aws-sdk.js +505 -343
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
- package/node_modules/aws-sdk/dist/xml2js.js +2579 -922
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +2 -2
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/lib/main.js +8 -8
- package/node_modules/esbuild/package.json +23 -23
- package/node_modules/xml2js/README.md +108 -7
- package/node_modules/xml2js/lib/parser.js +35 -7
- package/node_modules/xml2js/lib/xml2js.js +2 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +47 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -21
- package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -85
- package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +11 -1
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +86 -9
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +10 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +10 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +16 -11
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +7 -4
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +49 -8
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +20 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +5 -2
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +84 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +199 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +165 -39
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +207 -20
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +403 -50
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +19 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +6 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +94 -197
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +6 -305
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +109 -32
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +43 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +397 -59
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +15 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/package.json +5 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
- package/node_modules/xml2js/package.json +11 -5
- package/package.json +5 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/.npmignore +0 -5
@@ -1697,6 +1697,7 @@ declare namespace Connect {
|
|
1697
1697
|
}
|
1698
1698
|
export type AvailableNumbersList = AvailableNumberSummary[];
|
1699
1699
|
export type AwsRegion = string;
|
1700
|
+
export type BehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY"|"ROUTE_ANY_CHANNEL"|string;
|
1700
1701
|
export type Boolean = boolean;
|
1701
1702
|
export type BotName = string;
|
1702
1703
|
export type BucketName = string;
|
@@ -1709,11 +1710,11 @@ declare namespace Connect {
|
|
1709
1710
|
export type ChatDurationInMinutes = number;
|
1710
1711
|
export interface ChatMessage {
|
1711
1712
|
/**
|
1712
|
-
* The type of the content. Supported types are text/plain, text/markdown, and application/
|
1713
|
+
* The type of the content. Supported types are text/plain, text/markdown, application/json, and application/vnd.amazonaws.connect.message.interactive.response.
|
1713
1714
|
*/
|
1714
1715
|
ContentType: ChatContentType;
|
1715
1716
|
/**
|
1716
|
-
* The content of the chat message. For text/plain and text/markdown, the Length Constraints are Minimum of 1, Maximum of 1024. For application/json, the Length Constraints are Minimum of 1, Maximum of 12000.
|
1717
|
+
* The content of the chat message. For text/plain and text/markdown, the Length Constraints are Minimum of 1, Maximum of 1024. For application/json, the Length Constraints are Minimum of 1, Maximum of 12000. For application/vnd.amazonaws.connect.message.interactive.response, the Length Constraints are Minimum of 1, Maximum of 12288.
|
1717
1718
|
*/
|
1718
1719
|
Content: ChatContent;
|
1719
1720
|
}
|
@@ -2682,6 +2683,12 @@ declare namespace Connect {
|
|
2682
2683
|
*/
|
2683
2684
|
RefreshTokenExpiration?: timestamp;
|
2684
2685
|
}
|
2686
|
+
export interface CrossChannelBehavior {
|
2687
|
+
/**
|
2688
|
+
* Specifies the other channels that can be routed to an agent handling their current channel.
|
2689
|
+
*/
|
2690
|
+
BehaviorType: BehaviorType;
|
2691
|
+
}
|
2685
2692
|
export interface CurrentMetric {
|
2686
2693
|
/**
|
2687
2694
|
* The name of the metric.
|
@@ -3591,7 +3598,7 @@ declare namespace Connect {
|
|
3591
3598
|
*/
|
3592
3599
|
StartTime: Timestamp;
|
3593
3600
|
/**
|
3594
|
-
* The timestamp, in UNIX Epoch time format, at which to end the reporting interval for the retrieval of historical metrics data. The time must be later than the start time timestamp. The time range between the start and end time must be less than 24 hours.
|
3601
|
+
* The timestamp, in UNIX Epoch time format, at which to end the reporting interval for the retrieval of historical metrics data. The time must be later than the start time timestamp. It cannot be later than the current timestamp. The time range between the start and end time must be less than 24 hours.
|
3595
3602
|
*/
|
3596
3603
|
EndTime: Timestamp;
|
3597
3604
|
/**
|
@@ -3603,7 +3610,7 @@ declare namespace Connect {
|
|
3603
3610
|
*/
|
3604
3611
|
Groupings?: GroupingsV2;
|
3605
3612
|
/**
|
3606
|
-
* The metrics to retrieve. Specify the name, groupings, and filters for each metric. The following historical metrics are available. For a description of each metric, see Historical metrics definitions in the Amazon Connect Administrator's Guide. AGENT_ADHERENT_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULE_ADHERENCE This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULED_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AGENT_CONNECTING_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD. For now, this metric only supports the following as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_ABANDONED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile
|
3613
|
+
* The metrics to retrieve. Specify the name, groupings, and filters for each metric. The following historical metrics are available. For a description of each metric, see Historical metrics definitions in the Amazon Connect Administrator's Guide. AGENT_ADHERENT_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULE_ADHERENCE This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULED_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AGENT_CONNECTING_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD. For now, this metric only supports the following as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_ABANDONED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ABANDONED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_DISCONNECTED Valid metric filter key: DISCONNECT_REASON Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile SUM_RETRY_CALLBACK_ATTEMPTS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile
|
3607
3614
|
*/
|
3608
3615
|
Metrics: MetricsV2;
|
3609
3616
|
/**
|
@@ -5120,6 +5127,10 @@ declare namespace Connect {
|
|
5120
5127
|
* The number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range for CHAT: Minimum value of 1. Maximum value of 10. Valid Range for TASK: Minimum value of 1. Maximum value of 10.
|
5121
5128
|
*/
|
5122
5129
|
Concurrency: Concurrency;
|
5130
|
+
/**
|
5131
|
+
* Defines the cross-channel routing behavior for each channel that is enabled for this Routing Profile. For example, this allows you to offer an agent a different contact from another channel when they are currently working with a contact from a Voice channel.
|
5132
|
+
*/
|
5133
|
+
CrossChannelBehavior?: CrossChannelBehavior;
|
5123
5134
|
}
|
5124
5135
|
export type MetricDataCollectionsV2 = MetricDataV2[];
|
5125
5136
|
export interface MetricDataV2 {
|
@@ -277,11 +277,11 @@ declare class ECS extends Service {
|
|
277
277
|
*/
|
278
278
|
listTasks(callback?: (err: AWSError, data: ECS.Types.ListTasksResponse) => void): Request<ECS.Types.ListTasksResponse, AWSError>;
|
279
279
|
/**
|
280
|
-
* Modifies an account setting. Account settings are set on a per-Region basis. If you change the account setting
|
280
|
+
* Modifies an account setting. Account settings are set on a per-Region basis. If you change the root user account setting, the default settings are reset for users and roles that do not have specified individual account settings. For more information, see Account Settings in the Amazon Elastic Container Service Developer Guide. When serviceLongArnFormat, taskLongArnFormat, or containerInstanceLongArnFormat are specified, the Amazon Resource Name (ARN) and resource ID format of the resource type for a specified user, role, or the root user for an account is affected. The opt-in and opt-out account setting must be set for each Amazon ECS resource separately. The ARN and resource ID format of a resource is defined by the opt-in status of the user or role that created the resource. You must turn on this setting to use Amazon ECS features such as resource tagging. When awsvpcTrunking is specified, the elastic network interface (ENI) limit for any new container instances that support the feature is changed. If awsvpcTrunking is turned on, any new container instances that support the feature are launched have the increased ENI limits available to them. For more information, see Elastic Network Interface Trunking in the Amazon Elastic Container Service Developer Guide. When containerInsights is specified, the default setting indicating whether Amazon Web Services CloudWatch Container Insights is turned on for your clusters is changed. If containerInsights is turned on, any new clusters that are created will have Container Insights turned on unless you disable it during cluster creation. For more information, see CloudWatch Container Insights in the Amazon Elastic Container Service Developer Guide.
|
281
281
|
*/
|
282
282
|
putAccountSetting(params: ECS.Types.PutAccountSettingRequest, callback?: (err: AWSError, data: ECS.Types.PutAccountSettingResponse) => void): Request<ECS.Types.PutAccountSettingResponse, AWSError>;
|
283
283
|
/**
|
284
|
-
* Modifies an account setting. Account settings are set on a per-Region basis. If you change the account setting
|
284
|
+
* Modifies an account setting. Account settings are set on a per-Region basis. If you change the root user account setting, the default settings are reset for users and roles that do not have specified individual account settings. For more information, see Account Settings in the Amazon Elastic Container Service Developer Guide. When serviceLongArnFormat, taskLongArnFormat, or containerInstanceLongArnFormat are specified, the Amazon Resource Name (ARN) and resource ID format of the resource type for a specified user, role, or the root user for an account is affected. The opt-in and opt-out account setting must be set for each Amazon ECS resource separately. The ARN and resource ID format of a resource is defined by the opt-in status of the user or role that created the resource. You must turn on this setting to use Amazon ECS features such as resource tagging. When awsvpcTrunking is specified, the elastic network interface (ENI) limit for any new container instances that support the feature is changed. If awsvpcTrunking is turned on, any new container instances that support the feature are launched have the increased ENI limits available to them. For more information, see Elastic Network Interface Trunking in the Amazon Elastic Container Service Developer Guide. When containerInsights is specified, the default setting indicating whether Amazon Web Services CloudWatch Container Insights is turned on for your clusters is changed. If containerInsights is turned on, any new clusters that are created will have Container Insights turned on unless you disable it during cluster creation. For more information, see CloudWatch Container Insights in the Amazon Elastic Container Service Developer Guide.
|
285
285
|
*/
|
286
286
|
putAccountSetting(callback?: (err: AWSError, data: ECS.Types.PutAccountSettingResponse) => void): Request<ECS.Types.PutAccountSettingResponse, AWSError>;
|
287
287
|
/**
|
@@ -445,11 +445,11 @@ declare class ECS extends Service {
|
|
445
445
|
*/
|
446
446
|
updateServicePrimaryTaskSet(callback?: (err: AWSError, data: ECS.Types.UpdateServicePrimaryTaskSetResponse) => void): Request<ECS.Types.UpdateServicePrimaryTaskSetResponse, AWSError>;
|
447
447
|
/**
|
448
|
-
* Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS
|
448
|
+
* Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS clears the protectionEnabled property making the task eligible for termination by a subsequent scale-in event. You can specify a custom expiration period for task protection from 1 minute to up to 2,880 minutes (48 hours). To specify the custom expiration period, set the expiresInMinutes property. The expiresInMinutes property is always reset when you invoke this operation for a task that already has protectionEnabled set to true. You can keep extending the protection expiration period of a task by invoking this operation repeatedly. To learn more about Amazon ECS task protection, see Task scale-in protection in the Amazon Elastic Container Service Developer Guide . This operation is only supported for tasks belonging to an Amazon ECS service. Invoking this operation for a standalone task will result in an TASK_NOT_VALID failure. For more information, see API failure reasons. If you prefer to set task protection from within the container, we recommend using the Task scale-in protection endpoint.
|
449
449
|
*/
|
450
450
|
updateTaskProtection(params: ECS.Types.UpdateTaskProtectionRequest, callback?: (err: AWSError, data: ECS.Types.UpdateTaskProtectionResponse) => void): Request<ECS.Types.UpdateTaskProtectionResponse, AWSError>;
|
451
451
|
/**
|
452
|
-
* Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS
|
452
|
+
* Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS clears the protectionEnabled property making the task eligible for termination by a subsequent scale-in event. You can specify a custom expiration period for task protection from 1 minute to up to 2,880 minutes (48 hours). To specify the custom expiration period, set the expiresInMinutes property. The expiresInMinutes property is always reset when you invoke this operation for a task that already has protectionEnabled set to true. You can keep extending the protection expiration period of a task by invoking this operation repeatedly. To learn more about Amazon ECS task protection, see Task scale-in protection in the Amazon Elastic Container Service Developer Guide . This operation is only supported for tasks belonging to an Amazon ECS service. Invoking this operation for a standalone task will result in an TASK_NOT_VALID failure. For more information, see API failure reasons. If you prefer to set task protection from within the container, we recommend using the Task scale-in protection endpoint.
|
453
453
|
*/
|
454
454
|
updateTaskProtection(callback?: (err: AWSError, data: ECS.Types.UpdateTaskProtectionResponse) => void): Request<ECS.Types.UpdateTaskProtectionResponse, AWSError>;
|
455
455
|
/**
|
@@ -557,7 +557,7 @@ declare namespace ECS {
|
|
557
557
|
*/
|
558
558
|
managedScaling?: ManagedScaling;
|
559
559
|
/**
|
560
|
-
* The managed termination protection setting to use for the Auto Scaling group capacity provider. This determines whether the Auto Scaling group has managed termination protection. The default is off. When using managed termination protection, managed scaling must also be used otherwise managed termination protection doesn't work. When managed termination protection is on, Amazon ECS prevents the Amazon EC2 instances in an Auto Scaling group that contain tasks from being terminated during a scale-in action. The Auto Scaling group and each instance in the Auto Scaling group must have instance protection from scale-in actions
|
560
|
+
* The managed termination protection setting to use for the Auto Scaling group capacity provider. This determines whether the Auto Scaling group has managed termination protection. The default is off. When using managed termination protection, managed scaling must also be used otherwise managed termination protection doesn't work. When managed termination protection is on, Amazon ECS prevents the Amazon EC2 instances in an Auto Scaling group that contain tasks from being terminated during a scale-in action. The Auto Scaling group and each instance in the Auto Scaling group must have instance protection from scale-in actions on as well. For more information, see Instance Protection in the Auto Scaling User Guide. When managed termination protection is off, your Amazon EC2 instances aren't protected from termination when the Auto Scaling group scales in.
|
561
561
|
*/
|
562
562
|
managedTerminationProtection?: ManagedTerminationProtection;
|
563
563
|
}
|
@@ -729,11 +729,11 @@ declare namespace ECS {
|
|
729
729
|
}
|
730
730
|
export interface ClusterSetting {
|
731
731
|
/**
|
732
|
-
* The name of the cluster setting. The
|
732
|
+
* The name of the cluster setting. The value is containerInsights .
|
733
733
|
*/
|
734
734
|
name?: ClusterSettingName;
|
735
735
|
/**
|
736
|
-
* The value to set for the cluster setting. The supported values are enabled and disabled.
|
736
|
+
* The value to set for the cluster setting. The supported values are enabled and disabled. If you set name to containerInsights and value to enabled, CloudWatch Container Insights will be on for the cluster, otherwise it will be off unless the containerInsights account setting is turned on. If a cluster value is specified, it will override the containerInsights value set with PutAccountSetting or PutAccountSettingDefault.
|
737
737
|
*/
|
738
738
|
value?: String;
|
739
739
|
}
|
@@ -1205,7 +1205,7 @@ declare namespace ECS {
|
|
1205
1205
|
*/
|
1206
1206
|
serviceName: String;
|
1207
1207
|
/**
|
1208
|
-
* The family and revision (family:revision) or full ARN of the task definition to run in your service. If a revision isn't specified, the latest ACTIVE revision is used. A task definition must be specified if the service uses either the ECS or CODE_DEPLOY deployment controllers.
|
1208
|
+
* The family and revision (family:revision) or full ARN of the task definition to run in your service. If a revision isn't specified, the latest ACTIVE revision is used. A task definition must be specified if the service uses either the ECS or CODE_DEPLOY deployment controllers. For more information about deployment types, see Amazon ECS deployment types.
|
1209
1209
|
*/
|
1210
1210
|
taskDefinition?: String;
|
1211
1211
|
/**
|
@@ -1281,7 +1281,7 @@ declare namespace ECS {
|
|
1281
1281
|
*/
|
1282
1282
|
propagateTags?: PropagateTags;
|
1283
1283
|
/**
|
1284
|
-
* Determines whether the execute command functionality is
|
1284
|
+
* Determines whether the execute command functionality is turned on for the service. If true, this enables execute command functionality on all containers in the service tasks.
|
1285
1285
|
*/
|
1286
1286
|
enableExecuteCommand?: Boolean;
|
1287
1287
|
/**
|
@@ -1529,7 +1529,7 @@ declare namespace ECS {
|
|
1529
1529
|
*/
|
1530
1530
|
networkConfiguration?: NetworkConfiguration;
|
1531
1531
|
/**
|
1532
|
-
* The rolloutState of a service is only returned for services that use the rolling update (ECS) deployment type that aren't behind a Classic Load Balancer. The rollout state of the deployment. When a service deployment is started, it begins in an IN_PROGRESS state. When the service reaches a steady state, the deployment transitions to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is
|
1532
|
+
* The rolloutState of a service is only returned for services that use the rolling update (ECS) deployment type that aren't behind a Classic Load Balancer. The rollout state of the deployment. When a service deployment is started, it begins in an IN_PROGRESS state. When the service reaches a steady state, the deployment transitions to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is turned on, the deployment transitions to a FAILED state. A deployment in FAILED state doesn't launch any new tasks. For more information, see DeploymentCircuitBreaker.
|
1533
1533
|
*/
|
1534
1534
|
rolloutState?: DeploymentRolloutState;
|
1535
1535
|
/**
|
@@ -1868,11 +1868,11 @@ declare namespace ECS {
|
|
1868
1868
|
export type Double = number;
|
1869
1869
|
export interface EFSAuthorizationConfig {
|
1870
1870
|
/**
|
1871
|
-
* The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which will enforce the path set on the EFS access point. If an access point is used, transit encryption must be
|
1871
|
+
* The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which will enforce the path set on the EFS access point. If an access point is used, transit encryption must be on in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS access points in the Amazon Elastic File System User Guide.
|
1872
1872
|
*/
|
1873
1873
|
accessPointId?: String;
|
1874
1874
|
/**
|
1875
|
-
* Determines whether to use the Amazon ECS task role defined in a task definition when mounting the Amazon EFS file system. If
|
1875
|
+
* Determines whether to use the Amazon ECS task role defined in a task definition when mounting the Amazon EFS file system. If it is turned on, transit encryption must be turned on in the EFSVolumeConfiguration. If this parameter is omitted, the default value of DISABLED is used. For more information, see Using Amazon EFS access points in the Amazon Elastic Container Service Developer Guide.
|
1876
1876
|
*/
|
1877
1877
|
iam?: EFSAuthorizationConfigIAM;
|
1878
1878
|
}
|
@@ -1888,7 +1888,7 @@ declare namespace ECS {
|
|
1888
1888
|
*/
|
1889
1889
|
rootDirectory?: String;
|
1890
1890
|
/**
|
1891
|
-
* Determines whether to use encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server. Transit encryption must be
|
1891
|
+
* Determines whether to use encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server. Transit encryption must be turned on if Amazon EFS IAM authorization is used. If this parameter is omitted, the default value of DISABLED is used. For more information, see Encrypting data in transit in the Amazon Elastic File System User Guide.
|
1892
1892
|
*/
|
1893
1893
|
transitEncryption?: EFSTransitEncryption;
|
1894
1894
|
/**
|
@@ -2067,7 +2067,7 @@ declare namespace ECS {
|
|
2067
2067
|
}
|
2068
2068
|
export interface GetTaskProtectionResponse {
|
2069
2069
|
/**
|
2070
|
-
* A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is
|
2070
|
+
* A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is turned on for a task, the value is true. Otherwise, it is false. expirationDate: The epoch time when protection for the task will expire.
|
2071
2071
|
*/
|
2072
2072
|
protectedTasks?: ProtectedTasks;
|
2073
2073
|
/**
|
@@ -2554,7 +2554,7 @@ declare namespace ECS {
|
|
2554
2554
|
*/
|
2555
2555
|
lastStartedAt?: Timestamp;
|
2556
2556
|
/**
|
2557
|
-
* The name of the managed agent. When the execute command feature is
|
2557
|
+
* The name of the managed agent. When the execute command feature is turned on, the managed agent name is ExecuteCommandAgent.
|
2558
2558
|
*/
|
2559
2559
|
name?: ManagedAgentName;
|
2560
2560
|
/**
|
@@ -2722,7 +2722,7 @@ declare namespace ECS {
|
|
2722
2722
|
*/
|
2723
2723
|
containerPort?: BoxedInteger;
|
2724
2724
|
/**
|
2725
|
-
* The port number on the container instance to reserve for your container. If you specify a containerPortRange, leave this field empty and the value of the hostPort is set as follows: For containers in a task with the awsvpc network mode, the hostPort is set to the same value as the containerPort. This is a static mapping strategy. For containers in a task with the bridge network mode, the Amazon ECS agent finds open ports on the host and
|
2725
|
+
* The port number on the container instance to reserve for your container. If you specify a containerPortRange, leave this field empty and the value of the hostPort is set as follows: For containers in a task with the awsvpc network mode, the hostPort is set to the same value as the containerPort. This is a static mapping strategy. For containers in a task with the bridge network mode, the Amazon ECS agent finds open ports on the host and automatically binds them to the container ports. This is a dynamic mapping strategy. If you use containers in a task with the awsvpc or host network mode, the hostPort can either be left blank or set to the same value as the containerPort. If you use containers in a task with the bridge network mode, you can specify a non-reserved host port for your container port mapping, or you can omit the hostPort (or set it to 0) while specifying a containerPort and your container automatically receives a port in the ephemeral port range for your container instance operating system and Docker version. The default ephemeral port range for Docker version 1.6.0 and later is listed on the instance under /proc/sys/net/ipv4/ip_local_port_range. If this kernel parameter is unavailable, the default ephemeral port range from 49153 through 65535 is used. Do not attempt to specify a host port in the ephemeral port range as these are reserved for automatic assignment. In general, ports below 32768 are outside of the ephemeral port range. The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376, and the Amazon ECS container agent ports 51678-51680. Any host port that was previously specified in a running task is also reserved while the task is running. That is, after a task stops, the host port is released. The current reserved ports are displayed in the remainingResources of DescribeContainerInstances output. A container instance can have up to 100 reserved ports at a time. This number includes the default reserved ports. Automatically assigned ports aren't included in the 100 reserved ports quota.
|
2726
2726
|
*/
|
2727
2727
|
hostPort?: BoxedInteger;
|
2728
2728
|
/**
|
@@ -2778,7 +2778,7 @@ declare namespace ECS {
|
|
2778
2778
|
export type ProxyConfigurationType = "APPMESH"|string;
|
2779
2779
|
export interface PutAccountSettingDefaultRequest {
|
2780
2780
|
/**
|
2781
|
-
* The resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the ENI limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for CloudWatch Container Insights for your clusters is affected.
|
2781
|
+
* The resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the ENI limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for Amazon Web Services CloudWatch Container Insights for your clusters is affected. When you specify fargateFIPSMode for the name and enabled for the value, Fargate uses FIPS-140 compliant cryptographic algorithms on your tasks. For more information about FIPS-140 compliance with Fargate, see Amazon Web Services Fargate Federal Information Processing Standard (FIPS) 140-2 compliance in the Amazon Elastic Container Service Developer Guide.
|
2782
2782
|
*/
|
2783
2783
|
name: SettingName;
|
2784
2784
|
/**
|
@@ -2794,7 +2794,7 @@ declare namespace ECS {
|
|
2794
2794
|
}
|
2795
2795
|
export interface PutAccountSettingRequest {
|
2796
2796
|
/**
|
2797
|
-
* The Amazon ECS resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the elastic network interface (ENI) limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for CloudWatch Container Insights for your clusters is affected.
|
2797
|
+
* The Amazon ECS resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the elastic network interface (ENI) limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for Amazon Web Services CloudWatch Container Insights for your clusters is affected. If fargateFIPSMode is specified, Fargate FIPS 140 compliance is affected.
|
2798
2798
|
*/
|
2799
2799
|
name: SettingName;
|
2800
2800
|
/**
|
@@ -2954,7 +2954,7 @@ declare namespace ECS {
|
|
2954
2954
|
*/
|
2955
2955
|
inferenceAccelerators?: InferenceAccelerators;
|
2956
2956
|
/**
|
2957
|
-
* The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see Fargate task storage in the Amazon ECS User Guide for Fargate.
|
2957
|
+
* The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see Fargate task storage in the Amazon ECS User Guide for Fargate. For tasks using the Fargate launch type, the task requires the following platforms: Linux platform version 1.4.0 or later.
|
2958
2958
|
*/
|
2959
2959
|
ephemeralStorage?: EphemeralStorage;
|
2960
2960
|
/**
|
@@ -3255,7 +3255,7 @@ declare namespace ECS {
|
|
3255
3255
|
*/
|
3256
3256
|
propagateTags?: PropagateTags;
|
3257
3257
|
/**
|
3258
|
-
* Determines whether the execute command functionality is
|
3258
|
+
* Determines whether the execute command functionality is turned on for the service. If true, the execute command functionality is turned on for all containers in tasks as part of the service.
|
3259
3259
|
*/
|
3260
3260
|
enableExecuteCommand?: Boolean;
|
3261
3261
|
}
|
@@ -3380,7 +3380,7 @@ declare namespace ECS {
|
|
3380
3380
|
*/
|
3381
3381
|
principalArn?: String;
|
3382
3382
|
}
|
3383
|
-
export type SettingName = "serviceLongArnFormat"|"taskLongArnFormat"|"containerInstanceLongArnFormat"|"awsvpcTrunking"|"containerInsights"|string;
|
3383
|
+
export type SettingName = "serviceLongArnFormat"|"taskLongArnFormat"|"containerInstanceLongArnFormat"|"awsvpcTrunking"|"containerInsights"|"fargateFIPSMode"|string;
|
3384
3384
|
export type Settings = Setting[];
|
3385
3385
|
export type SortOrder = "ASC"|"DESC"|string;
|
3386
3386
|
export type StabilityStatus = "STEADY_STATE"|"STABILIZING"|string;
|
@@ -3398,7 +3398,7 @@ declare namespace ECS {
|
|
3398
3398
|
*/
|
3399
3399
|
enableECSManagedTags?: Boolean;
|
3400
3400
|
/**
|
3401
|
-
* Whether or not the execute command functionality is
|
3401
|
+
* Whether or not the execute command functionality is turned on for the task. If true, this enables execute command functionality on all containers in the task.
|
3402
3402
|
*/
|
3403
3403
|
enableExecuteCommand?: Boolean;
|
3404
3404
|
/**
|
@@ -3660,7 +3660,7 @@ declare namespace ECS {
|
|
3660
3660
|
*/
|
3661
3661
|
desiredStatus?: String;
|
3662
3662
|
/**
|
3663
|
-
* Determines whether execute command functionality is
|
3663
|
+
* Determines whether execute command functionality is turned on for this task. If true, execute command functionality is turned on all the containers in the task.
|
3664
3664
|
*/
|
3665
3665
|
enableExecuteCommand?: Boolean;
|
3666
3666
|
/**
|
@@ -4267,7 +4267,7 @@ declare namespace ECS {
|
|
4267
4267
|
}
|
4268
4268
|
export interface UpdateTaskProtectionResponse {
|
4269
4269
|
/**
|
4270
|
-
* A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is
|
4270
|
+
* A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is turned on for a task, the value is true. Otherwise, it is false. expirationDate: The epoch time when protection for the task will expire.
|
4271
4271
|
*/
|
4272
4272
|
protectedTasks?: ProtectedTasks;
|
4273
4273
|
/**
|
@@ -19,6 +19,14 @@ declare class MarketplaceCatalog extends Service {
|
|
19
19
|
* Used to cancel an open change request. Must be sent before the status of the request changes to APPLYING, the final stage of completing your change request. You can describe a change during the 60-day request history retention period for API calls.
|
20
20
|
*/
|
21
21
|
cancelChangeSet(callback?: (err: AWSError, data: MarketplaceCatalog.Types.CancelChangeSetResponse) => void): Request<MarketplaceCatalog.Types.CancelChangeSetResponse, AWSError>;
|
22
|
+
/**
|
23
|
+
* Deletes a resource-based policy on an Entity that is identified by its resource ARN.
|
24
|
+
*/
|
25
|
+
deleteResourcePolicy(params: MarketplaceCatalog.Types.DeleteResourcePolicyRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.DeleteResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.DeleteResourcePolicyResponse, AWSError>;
|
26
|
+
/**
|
27
|
+
* Deletes a resource-based policy on an Entity that is identified by its resource ARN.
|
28
|
+
*/
|
29
|
+
deleteResourcePolicy(callback?: (err: AWSError, data: MarketplaceCatalog.Types.DeleteResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.DeleteResourcePolicyResponse, AWSError>;
|
22
30
|
/**
|
23
31
|
* Provides information about a given change set.
|
24
32
|
*/
|
@@ -35,6 +43,14 @@ declare class MarketplaceCatalog extends Service {
|
|
35
43
|
* Returns the metadata and content of the entity.
|
36
44
|
*/
|
37
45
|
describeEntity(callback?: (err: AWSError, data: MarketplaceCatalog.Types.DescribeEntityResponse) => void): Request<MarketplaceCatalog.Types.DescribeEntityResponse, AWSError>;
|
46
|
+
/**
|
47
|
+
* Gets a resource-based policy of an Entity that is identified by its resource ARN.
|
48
|
+
*/
|
49
|
+
getResourcePolicy(params: MarketplaceCatalog.Types.GetResourcePolicyRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.GetResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.GetResourcePolicyResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Gets a resource-based policy of an Entity that is identified by its resource ARN.
|
52
|
+
*/
|
53
|
+
getResourcePolicy(callback?: (err: AWSError, data: MarketplaceCatalog.Types.GetResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.GetResourcePolicyResponse, AWSError>;
|
38
54
|
/**
|
39
55
|
* Returns the list of change sets owned by the account being used to make the call. You can filter this list by providing any combination of entityId, ChangeSetName, and status. If you provide more than one filter, the API operation applies a logical AND between the filters. You can describe a change during the 60-day request history retention period for API calls.
|
40
56
|
*/
|
@@ -60,11 +76,19 @@ declare class MarketplaceCatalog extends Service {
|
|
60
76
|
*/
|
61
77
|
listTagsForResource(callback?: (err: AWSError, data: MarketplaceCatalog.Types.ListTagsForResourceResponse) => void): Request<MarketplaceCatalog.Types.ListTagsForResourceResponse, AWSError>;
|
62
78
|
/**
|
63
|
-
*
|
79
|
+
* Attaches a resource-based policy to an Entity. Examples of an entity include: AmiProduct and ContainerProduct.
|
80
|
+
*/
|
81
|
+
putResourcePolicy(params: MarketplaceCatalog.Types.PutResourcePolicyRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.PutResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.PutResourcePolicyResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* Attaches a resource-based policy to an Entity. Examples of an entity include: AmiProduct and ContainerProduct.
|
84
|
+
*/
|
85
|
+
putResourcePolicy(callback?: (err: AWSError, data: MarketplaceCatalog.Types.PutResourcePolicyResponse) => void): Request<MarketplaceCatalog.Types.PutResourcePolicyResponse, AWSError>;
|
86
|
+
/**
|
87
|
+
* Allows you to request changes for your entities. Within a single ChangeSet, you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error. For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type (AddRevisions) against the same entity (entity-id@1). For more information about working with change sets, see Working with change sets. For information on change types for single-AMI products, see Working with single-AMI products. Als, for more information on change types available for container-based products, see Working with container products.
|
64
88
|
*/
|
65
89
|
startChangeSet(params: MarketplaceCatalog.Types.StartChangeSetRequest, callback?: (err: AWSError, data: MarketplaceCatalog.Types.StartChangeSetResponse) => void): Request<MarketplaceCatalog.Types.StartChangeSetResponse, AWSError>;
|
66
90
|
/**
|
67
|
-
* Allows you to request changes for your entities. Within a single ChangeSet, you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error. For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type (AddRevisions) against the same entity (entity-id@1). For more information about working with change sets, see Working with change sets.
|
91
|
+
* Allows you to request changes for your entities. Within a single ChangeSet, you can't start the same change type against the same entity multiple times. Additionally, when a ChangeSet is running, all the entities targeted by the different changes are locked until the change set has completed (either succeeded, cancelled, or failed). If you try to start a change set containing a change against an entity that is already locked, you will receive a ResourceInUseException error. For example, you can't start the ChangeSet described in the example later in this topic because it contains two changes to run the same change type (AddRevisions) against the same entity (entity-id@1). For more information about working with change sets, see Working with change sets. For information on change types for single-AMI products, see Working with single-AMI products. Als, for more information on change types available for container-based products, see Working with container products.
|
68
92
|
*/
|
69
93
|
startChangeSet(callback?: (err: AWSError, data: MarketplaceCatalog.Types.StartChangeSetResponse) => void): Request<MarketplaceCatalog.Types.StartChangeSetResponse, AWSError>;
|
70
94
|
/**
|
@@ -109,7 +133,7 @@ declare namespace MarketplaceCatalog {
|
|
109
133
|
export type Catalog = string;
|
110
134
|
export interface Change {
|
111
135
|
/**
|
112
|
-
* Change types are single string values that describe your intention for the change. Each change type is unique for each EntityType provided in the change's scope.
|
136
|
+
* Change types are single string values that describe your intention for the change. Each change type is unique for each EntityType provided in the change's scope. For more information on change types available for single-AMI products, see Working with single-AMI products. Also, for more information on change types available for container-based products, see Working with container products.
|
113
137
|
*/
|
114
138
|
ChangeType: ChangeType;
|
115
139
|
/**
|
@@ -121,7 +145,7 @@ declare namespace MarketplaceCatalog {
|
|
121
145
|
*/
|
122
146
|
EntityTags?: TagList;
|
123
147
|
/**
|
124
|
-
* This object contains details specific to the change type of the requested change.
|
148
|
+
* This object contains details specific to the change type of the requested change. For more information on change types available for single-AMI products, see Working with single-AMI products. Also, for more information on change types available for container-based products, see Working with container products.
|
125
149
|
*/
|
126
150
|
Details: Json;
|
127
151
|
/**
|
@@ -193,6 +217,14 @@ declare namespace MarketplaceCatalog {
|
|
193
217
|
export type ChangeType = string;
|
194
218
|
export type ClientRequestToken = string;
|
195
219
|
export type DateTimeISO8601 = string;
|
220
|
+
export interface DeleteResourcePolicyRequest {
|
221
|
+
/**
|
222
|
+
* The Amazon Resource Name (ARN) of the Entity resource that is associated with the resource policy.
|
223
|
+
*/
|
224
|
+
ResourceArn: ResourceARN;
|
225
|
+
}
|
226
|
+
export interface DeleteResourcePolicyResponse {
|
227
|
+
}
|
196
228
|
export interface DescribeChangeSetRequest {
|
197
229
|
/**
|
198
230
|
* Required. The catalog related to the request. Fixed value: AWSMarketplace
|
@@ -339,8 +371,21 @@ declare namespace MarketplaceCatalog {
|
|
339
371
|
export type FilterList = Filter[];
|
340
372
|
export type FilterName = string;
|
341
373
|
export type FilterValueContent = string;
|
374
|
+
export interface GetResourcePolicyRequest {
|
375
|
+
/**
|
376
|
+
* The Amazon Resource Name (ARN) of the Entity resource that is associated with the resource policy.
|
377
|
+
*/
|
378
|
+
ResourceArn: ResourceARN;
|
379
|
+
}
|
380
|
+
export interface GetResourcePolicyResponse {
|
381
|
+
/**
|
382
|
+
* The policy document to set; formatted in JSON.
|
383
|
+
*/
|
384
|
+
Policy?: ResourcePolicyJson;
|
385
|
+
}
|
342
386
|
export type Identifier = string;
|
343
387
|
export type Json = string;
|
388
|
+
export type ListChangeSetsMaxResultInteger = number;
|
344
389
|
export interface ListChangeSetsRequest {
|
345
390
|
/**
|
346
391
|
* The catalog related to the request. Fixed value: AWSMarketplace
|
@@ -357,7 +402,7 @@ declare namespace MarketplaceCatalog {
|
|
357
402
|
/**
|
358
403
|
* The maximum number of results returned by a single call. This value must be provided in the next call to retrieve the next set of results. By default, this value is 20.
|
359
404
|
*/
|
360
|
-
MaxResults?:
|
405
|
+
MaxResults?: ListChangeSetsMaxResultInteger;
|
361
406
|
/**
|
362
407
|
* The token value retrieved from a previous call to access the next page of results.
|
363
408
|
*/
|
@@ -373,6 +418,7 @@ declare namespace MarketplaceCatalog {
|
|
373
418
|
*/
|
374
419
|
NextToken?: NextToken;
|
375
420
|
}
|
421
|
+
export type ListEntitiesMaxResultInteger = number;
|
376
422
|
export interface ListEntitiesRequest {
|
377
423
|
/**
|
378
424
|
* The catalog related to the request. Fixed value: AWSMarketplace
|
@@ -397,7 +443,8 @@ declare namespace MarketplaceCatalog {
|
|
397
443
|
/**
|
398
444
|
* Specifies the upper limit of the elements on a single page. If a value isn't provided, the default value is 20.
|
399
445
|
*/
|
400
|
-
MaxResults?:
|
446
|
+
MaxResults?: ListEntitiesMaxResultInteger;
|
447
|
+
OwnershipType?: OwnershipType;
|
401
448
|
}
|
402
449
|
export interface ListEntitiesResponse {
|
403
450
|
/**
|
@@ -425,12 +472,25 @@ declare namespace MarketplaceCatalog {
|
|
425
472
|
*/
|
426
473
|
Tags?: TagList;
|
427
474
|
}
|
428
|
-
export type MaxResultInteger = number;
|
429
475
|
export type NextToken = string;
|
476
|
+
export type OwnershipType = "SELF"|"SHARED"|string;
|
477
|
+
export interface PutResourcePolicyRequest {
|
478
|
+
/**
|
479
|
+
* The Amazon Resource Name (ARN) of the Entity resource you want to associate with a resource policy.
|
480
|
+
*/
|
481
|
+
ResourceArn: ResourceARN;
|
482
|
+
/**
|
483
|
+
* The policy document to set; formatted in JSON.
|
484
|
+
*/
|
485
|
+
Policy: ResourcePolicyJson;
|
486
|
+
}
|
487
|
+
export interface PutResourcePolicyResponse {
|
488
|
+
}
|
430
489
|
export type RequestedChangeList = Change[];
|
431
490
|
export type ResourceARN = string;
|
432
491
|
export type ResourceId = string;
|
433
492
|
export type ResourceIdList = ResourceId[];
|
493
|
+
export type ResourcePolicyJson = string;
|
434
494
|
export interface Sort {
|
435
495
|
/**
|
436
496
|
* For ListEntities, supported attributes include LastModifiedDate (default), Visibility, EntityId, and Name. For ListChangeSets, supported attributes include StartTime and EndTime.
|
@@ -3144,7 +3144,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3144
3144
|
*/
|
3145
3145
|
Queue?: __string;
|
3146
3146
|
/**
|
3147
|
-
* Required for setting up a job to use queue hopping. Minimum wait time in minutes until the job can hop to the destination queue. Valid range is 1 to
|
3147
|
+
* Required for setting up a job to use queue hopping. Minimum wait time in minutes until the job can hop to the destination queue. Valid range is 1 to 4320 minutes, inclusive.
|
3148
3148
|
*/
|
3149
3149
|
WaitMinutes?: __integer;
|
3150
3150
|
}
|
@@ -3450,6 +3450,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3450
3450
|
* The tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up.
|
3451
3451
|
*/
|
3452
3452
|
BillingTagsSource?: BillingTagsSource;
|
3453
|
+
/**
|
3454
|
+
* Prevent duplicate jobs from being created and ensure idempotency for your requests. A client request token can be any string that includes up to 64 ASCII characters. If you reuse a client request token within one minute of a successful request, the API returns the job details of the original request instead. For more information see https://docs.aws.amazon.com/mediaconvert/latest/apireference/idempotency.html.
|
3455
|
+
*/
|
3456
|
+
ClientRequestToken?: __string;
|
3453
3457
|
/**
|
3454
3458
|
* The time, in Unix epoch format in seconds, when the job got created.
|
3455
3459
|
*/
|
@@ -3534,6 +3538,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3534
3538
|
* User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs.
|
3535
3539
|
*/
|
3536
3540
|
UserMetadata?: __mapOf__string;
|
3541
|
+
/**
|
3542
|
+
* Contains any warning messages for the job. Use to help identify potential issues with your input, output, or job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/warning_codes.html
|
3543
|
+
*/
|
3544
|
+
Warnings?: __listOfWarningGroup;
|
3537
3545
|
}
|
3538
3546
|
export interface JobMessages {
|
3539
3547
|
/**
|
@@ -5871,6 +5879,16 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
5871
5879
|
*/
|
5872
5880
|
RateControlMode?: Vp9RateControlMode;
|
5873
5881
|
}
|
5882
|
+
export interface WarningGroup {
|
5883
|
+
/**
|
5884
|
+
* Warning code that identifies a specific warning in the job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/warning_codes.html
|
5885
|
+
*/
|
5886
|
+
Code: __integer;
|
5887
|
+
/**
|
5888
|
+
* The number of times this warning occurred in the job.
|
5889
|
+
*/
|
5890
|
+
Count: __integer;
|
5891
|
+
}
|
5874
5892
|
export type WatermarkingStrength = "LIGHTEST"|"LIGHTER"|"DEFAULT"|"STRONGER"|"STRONGEST"|string;
|
5875
5893
|
export type WavFormat = "RIFF"|"RF64"|string;
|
5876
5894
|
export interface WavSettings {
|
@@ -6231,6 +6249,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
6231
6249
|
export type __listOfQueue = Queue[];
|
6232
6250
|
export type __listOfQueueTransition = QueueTransition[];
|
6233
6251
|
export type __listOfTeletextPageType = TeletextPageType[];
|
6252
|
+
export type __listOfWarningGroup = WarningGroup[];
|
6234
6253
|
export type __listOf__doubleMinNegative60Max6 = __doubleMinNegative60Max6[];
|
6235
6254
|
export type __listOf__integerMin1Max2147483647 = __integerMin1Max2147483647[];
|
6236
6255
|
export type __listOf__integerMin32Max8182 = __integerMin32Max8182[];
|
@@ -4157,10 +4157,10 @@ declare namespace Omics {
|
|
4157
4157
|
export type WorkflowParameterName = string;
|
4158
4158
|
export type WorkflowParameterTemplate = {[key: string]: WorkflowParameter};
|
4159
4159
|
export type WorkflowRequestId = string;
|
4160
|
-
export type WorkflowStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|
|
4160
|
+
export type WorkflowStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|string;
|
4161
4161
|
export type WorkflowStatusMessage = string;
|
4162
4162
|
export type WorkflowTimestamp = Date;
|
4163
|
-
export type WorkflowType = "PRIVATE"|
|
4163
|
+
export type WorkflowType = "PRIVATE"|string;
|
4164
4164
|
/**
|
4165
4165
|
* 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.
|
4166
4166
|
*/
|