aws-sdk 2.1649.0 → 2.1651.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/apis/application-autoscaling-2016-02-06.min.json +4 -1
- package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +10 -1
- package/apis/cloudfront-2020-05-31.min.json +4 -1
- package/apis/cloudhsmv2-2017-04-28.min.json +69 -17
- package/apis/connect-2017-08-08.min.json +272 -255
- package/apis/datazone-2018-05-10.min.json +251 -26
- package/apis/datazone-2018-05-10.paginators.json +6 -0
- package/apis/elasticache-2015-02-02.min.json +4 -1
- package/apis/elasticmapreduce-2009-03-31.min.json +15 -3
- package/apis/glue-2017-03-31.min.json +93 -89
- package/apis/kinesisanalyticsv2-2018-05-23.min.json +4 -1
- package/apis/mq-2017-11-27.min.json +4 -4
- package/apis/opensearch-2021-01-01.min.json +98 -141
- package/apis/pi-2018-02-27.min.json +4 -1
- package/apis/qconnect-2020-10-19.min.json +335 -108
- package/apis/qconnect-2020-10-19.paginators.json +6 -0
- package/apis/quicksight-2018-04-01.min.json +598 -483
- package/apis/rds-2013-01-10.min.json +4 -1
- package/apis/rds-2013-02-12.min.json +4 -1
- package/apis/rds-2013-09-09.min.json +4 -1
- package/apis/rds-2014-09-01.min.json +4 -1
- package/apis/rds-2014-10-31.min.json +4 -1
- package/apis/sagemaker-2017-07-24.min.json +805 -792
- package/apis/workspaces-2015-04-08.min.json +507 -76
- package/clients/acmpca.d.ts +3 -3
- package/clients/applicationautoscaling.d.ts +43 -43
- package/clients/chimesdkmediapipelines.d.ts +19 -15
- package/clients/cloudfront.d.ts +7 -7
- package/clients/cloudhsmv2.d.ts +117 -34
- package/clients/connect.d.ts +29 -10
- package/clients/datazone.d.ts +269 -1
- package/clients/emr.d.ts +12 -4
- package/clients/glue.d.ts +6 -0
- package/clients/kinesisanalyticsv2.d.ts +1 -1
- package/clients/mq.d.ts +15 -15
- package/clients/opensearch.d.ts +0 -53
- package/clients/pi.d.ts +2 -2
- package/clients/qconnect.d.ts +219 -1
- package/clients/quicksight.d.ts +90 -0
- package/clients/rds.d.ts +4 -4
- package/clients/sagemaker.d.ts +18 -1
- package/clients/workspaces.d.ts +596 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +25 -25
- package/dist/aws-sdk.js +391 -286
- package/dist/aws-sdk.min.js +103 -103
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/connect.d.ts
CHANGED
@@ -964,11 +964,11 @@ declare class Connect extends Service {
|
|
964
964
|
*/
|
965
965
|
getTrafficDistribution(callback?: (err: AWSError, data: Connect.Types.GetTrafficDistributionResponse) => void): Request<Connect.Types.GetTrafficDistributionResponse, AWSError>;
|
966
966
|
/**
|
967
|
-
* Imports a claimed phone number from an external service, such as Amazon Pinpoint, into an Amazon Connect instance. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance was created.
|
967
|
+
* Imports a claimed phone number from an external service, such as Amazon Pinpoint, into an Amazon Connect instance. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance was created. Call the DescribePhoneNumber API to verify the status of a previous ImportPhoneNumber operation. If you plan to claim or import numbers and then release numbers frequently, contact us for a service quota exception. Otherwise, it is possible you will be blocked from claiming and releasing any more numbers until up to 180 days past the oldest number released has expired. By default you can claim or import and then release up to 200% of your maximum number of active phone numbers. If you claim or import and then release phone numbers using the UI or API during a rolling 180 day cycle that exceeds 200% of your phone number service level quota, you will be blocked from claiming or importing any more numbers until 180 days past the oldest number released has expired. For example, if you already have 99 claimed or imported numbers and a service level quota of 99 phone numbers, and in any 180 day period you release 99, claim 99, and then release 99, you will have exceeded the 200% limit. At that point you are blocked from claiming any more numbers until you open an Amazon Web Services Support ticket.
|
968
968
|
*/
|
969
969
|
importPhoneNumber(params: Connect.Types.ImportPhoneNumberRequest, callback?: (err: AWSError, data: Connect.Types.ImportPhoneNumberResponse) => void): Request<Connect.Types.ImportPhoneNumberResponse, AWSError>;
|
970
970
|
/**
|
971
|
-
* Imports a claimed phone number from an external service, such as Amazon Pinpoint, into an Amazon Connect instance. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance was created.
|
971
|
+
* Imports a claimed phone number from an external service, such as Amazon Pinpoint, into an Amazon Connect instance. You can call this API only in the same Amazon Web Services Region where the Amazon Connect instance was created. Call the DescribePhoneNumber API to verify the status of a previous ImportPhoneNumber operation. If you plan to claim or import numbers and then release numbers frequently, contact us for a service quota exception. Otherwise, it is possible you will be blocked from claiming and releasing any more numbers until up to 180 days past the oldest number released has expired. By default you can claim or import and then release up to 200% of your maximum number of active phone numbers. If you claim or import and then release phone numbers using the UI or API during a rolling 180 day cycle that exceeds 200% of your phone number service level quota, you will be blocked from claiming or importing any more numbers until 180 days past the oldest number released has expired. For example, if you already have 99 claimed or imported numbers and a service level quota of 99 phone numbers, and in any 180 day period you release 99, claim 99, and then release 99, you will have exceeded the 200% limit. At that point you are blocked from claiming any more numbers until you open an Amazon Web Services Support ticket.
|
972
972
|
*/
|
973
973
|
importPhoneNumber(callback?: (err: AWSError, data: Connect.Types.ImportPhoneNumberResponse) => void): Request<Connect.Types.ImportPhoneNumberResponse, AWSError>;
|
974
974
|
/**
|
@@ -1508,11 +1508,11 @@ declare class Connect extends Service {
|
|
1508
1508
|
*/
|
1509
1509
|
startAttachedFileUpload(callback?: (err: AWSError, data: Connect.Types.StartAttachedFileUploadResponse) => void): Request<Connect.Types.StartAttachedFileUploadResponse, AWSError>;
|
1510
1510
|
/**
|
1511
|
-
* Initiates a flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in the following situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. If you use the ChatDurationInMinutes parameter and receive a 400 error, your account may not support the ability to configure custom chat durations. For more information, contact Amazon Web Services Support. For more information about chat, see
|
1511
|
+
* Initiates a flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in the following situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. If you use the ChatDurationInMinutes parameter and receive a 400 error, your account may not support the ability to configure custom chat durations. For more information, contact Amazon Web Services Support. For more information about chat, see the following topics in the Amazon Connect Administrator Guide: Concepts: Web and mobile messaging capabilities in Amazon Connect Amazon Connect Chat security best practices
|
1512
1512
|
*/
|
1513
1513
|
startChatContact(params: Connect.Types.StartChatContactRequest, callback?: (err: AWSError, data: Connect.Types.StartChatContactResponse) => void): Request<Connect.Types.StartChatContactResponse, AWSError>;
|
1514
1514
|
/**
|
1515
|
-
* Initiates a flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in the following situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. If you use the ChatDurationInMinutes parameter and receive a 400 error, your account may not support the ability to configure custom chat durations. For more information, contact Amazon Web Services Support. For more information about chat, see
|
1515
|
+
* Initiates a flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in the following situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. If you use the ChatDurationInMinutes parameter and receive a 400 error, your account may not support the ability to configure custom chat durations. For more information, contact Amazon Web Services Support. For more information about chat, see the following topics in the Amazon Connect Administrator Guide: Concepts: Web and mobile messaging capabilities in Amazon Connect Amazon Connect Chat security best practices
|
1516
1516
|
*/
|
1517
1517
|
startChatContact(callback?: (err: AWSError, data: Connect.Types.StartChatContactResponse) => void): Request<Connect.Types.StartChatContactResponse, AWSError>;
|
1518
1518
|
/**
|
@@ -1532,11 +1532,11 @@ declare class Connect extends Service {
|
|
1532
1532
|
*/
|
1533
1533
|
startContactRecording(callback?: (err: AWSError, data: Connect.Types.StartContactRecordingResponse) => void): Request<Connect.Types.StartContactRecordingResponse, AWSError>;
|
1534
1534
|
/**
|
1535
|
-
* Initiates real-time message streaming for a new chat contact. For more information about message streaming, see Enable real-time chat message streaming in the Amazon Connect Administrator Guide.
|
1535
|
+
* Initiates real-time message streaming for a new chat contact. For more information about message streaming, see Enable real-time chat message streaming in the Amazon Connect Administrator Guide. For more information about chat, see the following topics in the Amazon Connect Administrator Guide: Concepts: Web and mobile messaging capabilities in Amazon Connect Amazon Connect Chat security best practices
|
1536
1536
|
*/
|
1537
1537
|
startContactStreaming(params: Connect.Types.StartContactStreamingRequest, callback?: (err: AWSError, data: Connect.Types.StartContactStreamingResponse) => void): Request<Connect.Types.StartContactStreamingResponse, AWSError>;
|
1538
1538
|
/**
|
1539
|
-
* Initiates real-time message streaming for a new chat contact. For more information about message streaming, see Enable real-time chat message streaming in the Amazon Connect Administrator Guide.
|
1539
|
+
* Initiates real-time message streaming for a new chat contact. For more information about message streaming, see Enable real-time chat message streaming in the Amazon Connect Administrator Guide. For more information about chat, see the following topics in the Amazon Connect Administrator Guide: Concepts: Web and mobile messaging capabilities in Amazon Connect Amazon Connect Chat security best practices
|
1540
1540
|
*/
|
1541
1541
|
startContactStreaming(callback?: (err: AWSError, data: Connect.Types.StartContactStreamingResponse) => void): Request<Connect.Types.StartContactStreamingResponse, AWSError>;
|
1542
1542
|
/**
|
@@ -2116,6 +2116,8 @@ declare namespace Connect {
|
|
2116
2116
|
*/
|
2117
2117
|
L5Ids?: HierarchyGroupIdList;
|
2118
2118
|
}
|
2119
|
+
export type AgentId = string;
|
2120
|
+
export type AgentIds = AgentId[];
|
2119
2121
|
export interface AgentInfo {
|
2120
2122
|
/**
|
2121
2123
|
* The identifier of the agent who accepted the contact.
|
@@ -2240,6 +2242,12 @@ declare namespace Connect {
|
|
2240
2242
|
export type AgentStatusType = "ROUTABLE"|"CUSTOM"|"OFFLINE"|string;
|
2241
2243
|
export type AgentStatusTypes = AgentStatusType[];
|
2242
2244
|
export type AgentUsername = string;
|
2245
|
+
export interface AgentsCriteria {
|
2246
|
+
/**
|
2247
|
+
* An object to specify a list of agents, by Agent ID.
|
2248
|
+
*/
|
2249
|
+
AgentIds?: AgentIds;
|
2250
|
+
}
|
2243
2251
|
export type AgentsMinOneMaxHundred = UserId[];
|
2244
2252
|
export type AliasArn = string;
|
2245
2253
|
export type AllowedAccessControlTags = {[key: string]: SecurityProfilePolicyValue};
|
@@ -2633,7 +2641,11 @@ declare namespace Connect {
|
|
2633
2641
|
/**
|
2634
2642
|
* The proficiency level of the condition.
|
2635
2643
|
*/
|
2636
|
-
ProficiencyLevel?:
|
2644
|
+
ProficiencyLevel?: NullableProficiencyLevel;
|
2645
|
+
/**
|
2646
|
+
* An object to define AgentsCriteria.
|
2647
|
+
*/
|
2648
|
+
MatchCriteria?: MatchCriteria;
|
2637
2649
|
/**
|
2638
2650
|
* The operator of the condition.
|
2639
2651
|
*/
|
@@ -5992,7 +6004,7 @@ declare namespace Connect {
|
|
5992
6004
|
*/
|
5993
6005
|
BooleanValue?: Boolean;
|
5994
6006
|
/**
|
5995
|
-
*
|
6007
|
+
* A Double number value type.
|
5996
6008
|
*/
|
5997
6009
|
DoubleValue?: Double;
|
5998
6010
|
/**
|
@@ -6341,7 +6353,7 @@ declare namespace Connect {
|
|
6341
6353
|
*/
|
6342
6354
|
Groupings?: GroupingsV2;
|
6343
6355
|
/**
|
6344
|
-
* 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 Guide. ABANDONMENT_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Abandonment rate 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 UI name: Adherent time AGENT_ANSWER_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent answer rate AGENT_NON_ADHERENT_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Non-adherent time AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent non-response AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy Data for this metric is available starting from October 1, 2023 0:00:00 GMT. UI name: Agent non-response without customer abandons AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Occupancy 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 UI name: Adherence 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 UI name: Scheduled time AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average queue abandon time AVG_ACTIVE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Average active time AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average after contact work time Feature is a valid filter but not a valid grouping. 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 UI name: Average agent API connecting time The Negate key in Metric Level Filters is not applicable for this metric. AVG_AGENT_PAUSE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Average agent pause time AVG_CASE_RELATED_CONTACTS Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Average contacts per case AVG_CASE_RESOLUTION_TIME Unit: Seconds Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Average case resolution time AVG_CONTACT_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average contact duration Feature is a valid filter but not a valid grouping. AVG_CONVERSATION_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average conversation duration AVG_FLOW_TIME Unit: Seconds Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Average flow time AVG_GREETING_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent greeting time AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, RoutingStepExpression UI name: Average handle time Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average customer hold time Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME_ALL_CONTACTS Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average customer hold time all contacts AVG_HOLDS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average holds Feature is a valid filter but not a valid grouping. AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interaction and customer hold time AVG_INTERACTION_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interaction time Feature is a valid filter but not a valid grouping. AVG_INTERRUPTIONS_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interruptions AVG_INTERRUPTION_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interruption time AVG_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average non-talk time AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average queue answer time Feature is a valid filter but not a valid grouping. AVG_RESOLUTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average resolution time AVG_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average talk time AVG_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent talk time AVG_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average customer talk time CASES_CREATED Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases created CONTACTS_ABANDONED Unit: Count Metric filter: Valid values: API| Incoming | Outbound | Transfer | Callback | Queue_Transfer| Disconnect Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect UI name: Contact abandoned CONTACTS_ABANDONED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Contacts abandoned in X seconds CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Contacts answered in X seconds CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts created Feature is a valid filter but not a valid grouping. CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect UI name: API contacts handled Feature is a valid filter but not a valid grouping. CONTACTS_HANDLED_BY_CONNECTED_TO_AGENT Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts handled (connected to agent timestamp) CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts hold disconnect CONTACTS_ON_HOLD_AGENT_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts hold agent disconnect CONTACTS_ON_HOLD_CUSTOMER_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts hold customer disconnect CONTACTS_PUT_ON_HOLD Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts put on hold CONTACTS_TRANSFERRED_OUT_EXTERNAL Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts transferred out external CONTACTS_TRANSFERRED_OUT_INTERNAL Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts transferred out internal CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts queued CONTACTS_QUEUED_BY_ENQUEUE Unit: Count Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype UI name: Contacts queued (enqueue timestamp) CONTACTS_RESOLVED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect Threshold: For ThresholdValue enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Contacts resolved in X CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts transferred out Feature is a valid filter but not a valid grouping. CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts transferred out by agent CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts transferred out queue CURRENT_CASES Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Current cases FLOWS_OUTCOME Unit: Count Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Flows outcome FLOWS_STARTED Unit: Count Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows resource ID, Initiation method, Resource published timestamp UI name: Flows started MAX_FLOW_TIME Unit: Seconds Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Maximum flow time MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Maximum queued time MIN_FLOW_TIME Unit: Seconds Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Minimum flow time PERCENT_CASES_FIRST_CONTACT_RESOLVED Unit: Percent Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases resolved on first contact PERCENT_CONTACTS_STEP_EXPIRED Unit: Percent Valid groupings and filters: Queue, RoutingStepExpression UI name: Not available PERCENT_CONTACTS_STEP_JOINED Unit: Percent Valid groupings and filters: Queue, RoutingStepExpression UI name: Not available PERCENT_FLOWS_OUTCOME Unit: Percent Valid metric filter key: FLOWS_OUTCOME_TYPE Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Flows outcome percentage. The FLOWS_OUTCOME_TYPE is not a valid grouping. PERCENT_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Non-talk time percent PERCENT_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Talk time percent PERCENT_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Agent talk time percent PERCENT_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Customer talk time percent REOPENED_CASE_ACTIONS Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases reopened RESOLVED_CASE_ACTIONS Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases resolved SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Q in Connect Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Service level X STEP_CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, RoutingStepExpression UI name: Not available SUM_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: After contact work time SUM_CONNECTING_TIME_AGENT Unit: Seconds Valid metric filter key: INITIATION_METHOD. This metric only supports the following filter keys as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent API connecting time The Negate key in Metric Level Filters is not applicable for this metric. SUM_CONTACT_FLOW_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contact flow time SUM_CONTACT_TIME_AGENT Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent on contact time SUM_CONTACTS_DISCONNECTED Valid metric filter key: DISCONNECT_REASON Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contact disconnected SUM_ERROR_STATUS_TIME_AGENT Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Error status time SUM_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contact handle time SUM_HOLD_TIME Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Customer hold time SUM_IDLE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Agent idle time SUM_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Agent interaction and hold time SUM_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent interaction time SUM_NON_PRODUCTIVE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Non-Productive Time SUM_ONLINE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Online time SUM_RETRY_CALLBACK_ATTEMPTS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Callback attempts
|
6356
|
+
* 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 Guide. ABANDONMENT_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Abandonment rate 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 UI name: Adherent time AGENT_ANSWER_RATE Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent answer rate AGENT_NON_ADHERENT_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Non-adherent time AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent non-response AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy Data for this metric is available starting from October 1, 2023 0:00:00 GMT. UI name: Agent non-response without customer abandons AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Occupancy 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 UI name: Adherence 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 UI name: Scheduled time AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average queue abandon time AVG_ACTIVE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Average active time AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average after contact work time Feature is a valid filter but not a valid grouping. 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 UI name: Average agent API connecting time The Negate key in Metric Level Filters is not applicable for this metric. AVG_AGENT_PAUSE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Average agent pause time AVG_CASE_RELATED_CONTACTS Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Average contacts per case AVG_CASE_RESOLUTION_TIME Unit: Seconds Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Average case resolution time AVG_CONTACT_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average contact duration Feature is a valid filter but not a valid grouping. AVG_CONVERSATION_DURATION Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average conversation duration AVG_FLOW_TIME Unit: Seconds Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Average flow time AVG_GREETING_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent greeting time AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, RoutingStepExpression UI name: Average handle time Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average customer hold time Feature is a valid filter but not a valid grouping. AVG_HOLD_TIME_ALL_CONTACTS Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average customer hold time all contacts AVG_HOLDS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average holds Feature is a valid filter but not a valid grouping. AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interaction and customer hold time AVG_INTERACTION_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interaction time Feature is a valid filter but not a valid grouping. AVG_INTERRUPTIONS_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interruptions AVG_INTERRUPTION_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent interruption time AVG_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average non-talk time AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average queue answer time Feature is a valid filter but not a valid grouping. AVG_RESOLUTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average resolution time AVG_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average talk time AVG_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average agent talk time AVG_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Average customer talk time CASES_CREATED Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases created CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts created Feature is a valid filter but not a valid grouping. CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect UI name: API contacts handled Feature is a valid filter but not a valid grouping. CONTACTS_HANDLED_BY_CONNECTED_TO_AGENT Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts handled (connected to agent timestamp) CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts hold disconnect CONTACTS_ON_HOLD_AGENT_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts hold agent disconnect CONTACTS_ON_HOLD_CUSTOMER_DISCONNECT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts hold customer disconnect CONTACTS_PUT_ON_HOLD Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts put on hold CONTACTS_TRANSFERRED_OUT_EXTERNAL Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts transferred out external CONTACTS_TRANSFERRED_OUT_INTERNAL Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contacts transferred out internal CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts queued CONTACTS_QUEUED_BY_ENQUEUE Unit: Count Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype UI name: Contacts queued (enqueue timestamp) CONTACTS_REMOVED_FROM_QUEUE_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Q in Connect Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: This metric is not available in Amazon Connect admin website. CONTACTS_RESOLVED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect Threshold: For ThresholdValue enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Contacts resolved in X CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Feature, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts transferred out Feature is a valid filter but not a valid grouping. CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts transferred out by agent CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contacts transferred out queue CURRENT_CASES Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Current cases FLOWS_OUTCOME Unit: Count Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Flows outcome FLOWS_STARTED Unit: Count Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows resource ID, Initiation method, Resource published timestamp UI name: Flows started MAX_FLOW_TIME Unit: Seconds Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Maximum flow time MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Maximum queued time MIN_FLOW_TIME Unit: Seconds Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Minimum flow time PERCENT_CASES_FIRST_CONTACT_RESOLVED Unit: Percent Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases resolved on first contact PERCENT_CONTACTS_STEP_EXPIRED Unit: Percent Valid groupings and filters: Queue, RoutingStepExpression UI name: This metric is available in Real-time Metrics UI but not on the Historical Metrics UI. PERCENT_CONTACTS_STEP_JOINED Unit: Percent Valid groupings and filters: Queue, RoutingStepExpression UI name: This metric is available in Real-time Metrics UI but not on the Historical Metrics UI. PERCENT_FLOWS_OUTCOME Unit: Percent Valid metric filter key: FLOWS_OUTCOME_TYPE Valid groupings and filters: Channel, contact/segmentAttributes/connect:Subtype, Flow type, Flows module resource ID, Flows next resource ID, Flows next resource queue ID, Flows outcome type, Flows resource ID, Initiation method, Resource published timestamp UI name: Flows outcome percentage. The FLOWS_OUTCOME_TYPE is not a valid grouping. PERCENT_NON_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Non-talk time percent PERCENT_TALK_TIME This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Talk time percent PERCENT_TALK_TIME_AGENT This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Agent talk time percent PERCENT_TALK_TIME_CUSTOMER This metric is available only for contacts analyzed by Contact Lens conversational analytics. Unit: Percentage Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Customer talk time percent REOPENED_CASE_ACTIONS Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases reopened RESOLVED_CASE_ACTIONS Unit: Count Required filter key: CASE_TEMPLATE_ARN Valid groupings and filters: CASE_TEMPLATE_ARN, CASE_STATUS UI name: Cases resolved SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Q in Connect Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Service level X STEP_CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, RoutingStepExpression UI name: This metric is available in Real-time Metrics UI but not on the Historical Metrics UI. SUM_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: After contact work time SUM_CONNECTING_TIME_AGENT Unit: Seconds Valid metric filter key: INITIATION_METHOD. This metric only supports the following filter keys as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent API connecting time The Negate key in Metric Level Filters is not applicable for this metric. SUM_CONTACTS_ABANDONED Unit: Count Metric filter: Valid values: API| Incoming | Outbound | Transfer | Callback | Queue_Transfer| Disconnect Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, RoutingStepExpression, Q in Connect UI name: Contact abandoned SUM_CONTACTS_ABANDONED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Contacts abandoned in X seconds SUM_CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). UI name: Contacts answered in X seconds SUM_CONTACT_FLOW_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contact flow time SUM_CONTACT_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Agent on contact time SUM_CONTACTS_DISCONNECTED Valid metric filter key: DISCONNECT_REASON Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Contact disconnected SUM_ERROR_STATUS_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Error status time SUM_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Contact handle time SUM_HOLD_TIME Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Customer hold time SUM_IDLE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Agent idle time SUM_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy, Q in Connect UI name: Agent interaction and hold time SUM_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy UI name: Agent interaction time SUM_NON_PRODUCTIVE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Non-Productive Time SUM_ONLINE_TIME_AGENT Unit: Seconds Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy UI name: Online time SUM_RETRY_CALLBACK_ATTEMPTS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, contact/segmentAttributes/connect:Subtype, Q in Connect UI name: Callback attempts
|
6345
6357
|
*/
|
6346
6358
|
Metrics: MetricsV2;
|
6347
6359
|
/**
|
@@ -8414,6 +8426,12 @@ declare namespace Connect {
|
|
8414
8426
|
NextToken?: ViewsNextToken;
|
8415
8427
|
}
|
8416
8428
|
export type Long = number;
|
8429
|
+
export interface MatchCriteria {
|
8430
|
+
/**
|
8431
|
+
* An object to define AgentIds.
|
8432
|
+
*/
|
8433
|
+
AgentsCriteria?: AgentsCriteria;
|
8434
|
+
}
|
8417
8435
|
export type MaxResult10 = number;
|
8418
8436
|
export type MaxResult100 = number;
|
8419
8437
|
export type MaxResult1000 = number;
|
@@ -8624,6 +8642,7 @@ declare namespace Connect {
|
|
8624
8642
|
*/
|
8625
8643
|
UserIds?: UserIdList;
|
8626
8644
|
}
|
8645
|
+
export type NullableProficiencyLevel = number;
|
8627
8646
|
export interface NumberReference {
|
8628
8647
|
/**
|
8629
8648
|
* Identifier of the number reference.
|
@@ -10093,7 +10112,7 @@ declare namespace Connect {
|
|
10093
10112
|
*/
|
10094
10113
|
QueueIds?: QueueIdList;
|
10095
10114
|
/**
|
10096
|
-
* The search criteria based on user-defined contact attributes that have been configured for contact search. For more information, see Search by
|
10115
|
+
* The search criteria based on user-defined contact attributes that have been configured for contact search. For more information, see Search by custom contact attributes in the Amazon Connect Administrator Guide. To use SearchableContactAttributes in a search request, the GetContactAttributes action is required to perform an API request. For more information, see https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonconnect.html#amazonconnect-actions-as-permissionsActions defined by Amazon Connect.
|
10097
10116
|
*/
|
10098
10117
|
SearchableContactAttributes?: SearchableContactAttributes;
|
10099
10118
|
}
|
package/clients/datazone.d.ts
CHANGED
@@ -475,6 +475,14 @@ declare class DataZone extends Service {
|
|
475
475
|
* Gets the data portal URL for the specified Amazon DataZone domain.
|
476
476
|
*/
|
477
477
|
getIamPortalLoginUrl(callback?: (err: AWSError, data: DataZone.Types.GetIamPortalLoginUrlOutput) => void): Request<DataZone.Types.GetIamPortalLoginUrlOutput, AWSError>;
|
478
|
+
/**
|
479
|
+
* Gets the data lineage node.
|
480
|
+
*/
|
481
|
+
getLineageNode(params: DataZone.Types.GetLineageNodeInput, callback?: (err: AWSError, data: DataZone.Types.GetLineageNodeOutput) => void): Request<DataZone.Types.GetLineageNodeOutput, AWSError>;
|
482
|
+
/**
|
483
|
+
* Gets the data lineage node.
|
484
|
+
*/
|
485
|
+
getLineageNode(callback?: (err: AWSError, data: DataZone.Types.GetLineageNodeOutput) => void): Request<DataZone.Types.GetLineageNodeOutput, AWSError>;
|
478
486
|
/**
|
479
487
|
* Gets a listing (a record of an asset at a given time).
|
480
488
|
*/
|
@@ -627,6 +635,14 @@ declare class DataZone extends Service {
|
|
627
635
|
* Lists Amazon DataZone environments.
|
628
636
|
*/
|
629
637
|
listEnvironments(callback?: (err: AWSError, data: DataZone.Types.ListEnvironmentsOutput) => void): Request<DataZone.Types.ListEnvironmentsOutput, AWSError>;
|
638
|
+
/**
|
639
|
+
* Lists the history of the specified data lineage node.
|
640
|
+
*/
|
641
|
+
listLineageNodeHistory(params: DataZone.Types.ListLineageNodeHistoryInput, callback?: (err: AWSError, data: DataZone.Types.ListLineageNodeHistoryOutput) => void): Request<DataZone.Types.ListLineageNodeHistoryOutput, AWSError>;
|
642
|
+
/**
|
643
|
+
* Lists the history of the specified data lineage node.
|
644
|
+
*/
|
645
|
+
listLineageNodeHistory(callback?: (err: AWSError, data: DataZone.Types.ListLineageNodeHistoryOutput) => void): Request<DataZone.Types.ListLineageNodeHistoryOutput, AWSError>;
|
630
646
|
/**
|
631
647
|
* Lists all metadata generation runs.
|
632
648
|
*/
|
@@ -707,6 +723,14 @@ declare class DataZone extends Service {
|
|
707
723
|
* Lists time series data points.
|
708
724
|
*/
|
709
725
|
listTimeSeriesDataPoints(callback?: (err: AWSError, data: DataZone.Types.ListTimeSeriesDataPointsOutput) => void): Request<DataZone.Types.ListTimeSeriesDataPointsOutput, AWSError>;
|
726
|
+
/**
|
727
|
+
* Posts a data lineage event.
|
728
|
+
*/
|
729
|
+
postLineageEvent(params: DataZone.Types.PostLineageEventInput, callback?: (err: AWSError, data: DataZone.Types.PostLineageEventOutput) => void): Request<DataZone.Types.PostLineageEventOutput, AWSError>;
|
730
|
+
/**
|
731
|
+
* Posts a data lineage event.
|
732
|
+
*/
|
733
|
+
postLineageEvent(callback?: (err: AWSError, data: DataZone.Types.PostLineageEventOutput) => void): Request<DataZone.Types.PostLineageEventOutput, AWSError>;
|
710
734
|
/**
|
711
735
|
* Posts time series data points to Amazon DataZone for the specified asset.
|
712
736
|
*/
|
@@ -3622,6 +3646,7 @@ declare namespace DataZone {
|
|
3622
3646
|
*/
|
3623
3647
|
status: DomainStatus;
|
3624
3648
|
}
|
3649
|
+
export type EdgeDirection = "UPSTREAM"|"DOWNSTREAM"|string;
|
3625
3650
|
export type EditedValue = string;
|
3626
3651
|
export type EnableSetting = "ENABLED"|"DISABLED"|string;
|
3627
3652
|
export type EnabledRegionList = RegionName[];
|
@@ -4909,6 +4934,82 @@ declare namespace DataZone {
|
|
4909
4934
|
*/
|
4910
4935
|
userProfileId: String;
|
4911
4936
|
}
|
4937
|
+
export interface GetLineageNodeInput {
|
4938
|
+
/**
|
4939
|
+
* The ID of the domain in which you want to get the data lineage node.
|
4940
|
+
*/
|
4941
|
+
domainIdentifier: DomainId;
|
4942
|
+
/**
|
4943
|
+
* The event time stamp for which you want to get the data lineage node.
|
4944
|
+
*/
|
4945
|
+
eventTimestamp?: Timestamp;
|
4946
|
+
/**
|
4947
|
+
* The ID of the data lineage node that you want to get. Both, a lineage node identifier generated by Amazon DataZone and a sourceIdentifier of the lineage node are supported. If sourceIdentifier is greater than 1800 characters, you can use lineage node identifier generated by Amazon DataZone to get the node details.
|
4948
|
+
*/
|
4949
|
+
identifier: LineageNodeIdentifier;
|
4950
|
+
}
|
4951
|
+
export interface GetLineageNodeOutput {
|
4952
|
+
/**
|
4953
|
+
* The timestamp at which the data lineage node was created.
|
4954
|
+
*/
|
4955
|
+
createdAt?: CreatedAt;
|
4956
|
+
/**
|
4957
|
+
* The user who created the data lineage node.
|
4958
|
+
*/
|
4959
|
+
createdBy?: CreatedBy;
|
4960
|
+
/**
|
4961
|
+
* The description of the data lineage node.
|
4962
|
+
*/
|
4963
|
+
description?: String;
|
4964
|
+
/**
|
4965
|
+
* The ID of the domain where you're getting the data lineage node.
|
4966
|
+
*/
|
4967
|
+
domainId: DomainId;
|
4968
|
+
/**
|
4969
|
+
* The downsteam nodes of the specified data lineage node.
|
4970
|
+
*/
|
4971
|
+
downstreamNodes?: LineageNodeReferenceList;
|
4972
|
+
/**
|
4973
|
+
* The timestamp of the event described in the data lineage node.
|
4974
|
+
*/
|
4975
|
+
eventTimestamp?: Timestamp;
|
4976
|
+
/**
|
4977
|
+
* The metadata of the specified data lineage node.
|
4978
|
+
*/
|
4979
|
+
formsOutput?: FormOutputList;
|
4980
|
+
/**
|
4981
|
+
* The ID of the data lineage node.
|
4982
|
+
*/
|
4983
|
+
id: LineageNodeId;
|
4984
|
+
/**
|
4985
|
+
* The name of the data lineage node.
|
4986
|
+
*/
|
4987
|
+
name?: String;
|
4988
|
+
/**
|
4989
|
+
* The source identifier of the data lineage node.
|
4990
|
+
*/
|
4991
|
+
sourceIdentifier?: String;
|
4992
|
+
/**
|
4993
|
+
* The name of the type of the specified data lineage node.
|
4994
|
+
*/
|
4995
|
+
typeName: String;
|
4996
|
+
/**
|
4997
|
+
* The revision type of the specified data lineage node.
|
4998
|
+
*/
|
4999
|
+
typeRevision?: Revision;
|
5000
|
+
/**
|
5001
|
+
* The timestamp at which the data lineage node was updated.
|
5002
|
+
*/
|
5003
|
+
updatedAt?: UpdatedAt;
|
5004
|
+
/**
|
5005
|
+
* The user who updated the data lineage node.
|
5006
|
+
*/
|
5007
|
+
updatedBy?: UpdatedBy;
|
5008
|
+
/**
|
5009
|
+
* The upstream nodes of the specified data lineage node.
|
5010
|
+
*/
|
5011
|
+
upstreamNodes?: LineageNodeReferenceList;
|
5012
|
+
}
|
4912
5013
|
export interface GetListingInput {
|
4913
5014
|
/**
|
4914
5015
|
* The ID of the Amazon DataZone domain.
|
@@ -5602,6 +5703,109 @@ declare namespace DataZone {
|
|
5602
5703
|
export type InventorySearchScope = "ASSET"|"GLOSSARY"|"GLOSSARY_TERM"|string;
|
5603
5704
|
export type KmsKeyArn = string;
|
5604
5705
|
export type LastName = string;
|
5706
|
+
export type LineageEvent = Buffer|Uint8Array|Blob|string;
|
5707
|
+
export type LineageNodeId = string;
|
5708
|
+
export type LineageNodeIdentifier = string;
|
5709
|
+
export interface LineageNodeReference {
|
5710
|
+
/**
|
5711
|
+
* The event timestamp of the data lineage node.
|
5712
|
+
*/
|
5713
|
+
eventTimestamp?: Timestamp;
|
5714
|
+
/**
|
5715
|
+
* The ID of the data lineage node.
|
5716
|
+
*/
|
5717
|
+
id?: LineageNodeId;
|
5718
|
+
}
|
5719
|
+
export type LineageNodeReferenceList = LineageNodeReference[];
|
5720
|
+
export type LineageNodeSummaries = LineageNodeSummary[];
|
5721
|
+
export interface LineageNodeSummary {
|
5722
|
+
/**
|
5723
|
+
* The timestamp at which the data lineage node was created.
|
5724
|
+
*/
|
5725
|
+
createdAt?: CreatedAt;
|
5726
|
+
/**
|
5727
|
+
* The user who created the data lineage node.
|
5728
|
+
*/
|
5729
|
+
createdBy?: CreatedBy;
|
5730
|
+
/**
|
5731
|
+
* The description of the data lineage node.
|
5732
|
+
*/
|
5733
|
+
description?: String;
|
5734
|
+
/**
|
5735
|
+
* The ID of the domain of the data lineage node.
|
5736
|
+
*/
|
5737
|
+
domainId: DomainId;
|
5738
|
+
/**
|
5739
|
+
* The event timestamp of the data lineage node.
|
5740
|
+
*/
|
5741
|
+
eventTimestamp?: Timestamp;
|
5742
|
+
/**
|
5743
|
+
* The ID of the data lineage node.
|
5744
|
+
*/
|
5745
|
+
id: LineageNodeId;
|
5746
|
+
/**
|
5747
|
+
* The name of the data lineage node.
|
5748
|
+
*/
|
5749
|
+
name?: String;
|
5750
|
+
/**
|
5751
|
+
* The alternate ID of the data lineage node.
|
5752
|
+
*/
|
5753
|
+
sourceIdentifier?: String;
|
5754
|
+
/**
|
5755
|
+
* The name of the type of the data lineage node.
|
5756
|
+
*/
|
5757
|
+
typeName: String;
|
5758
|
+
/**
|
5759
|
+
* The type of the revision of the data lineage node.
|
5760
|
+
*/
|
5761
|
+
typeRevision?: Revision;
|
5762
|
+
/**
|
5763
|
+
* The timestamp at which the data lineage node was updated.
|
5764
|
+
*/
|
5765
|
+
updatedAt?: UpdatedAt;
|
5766
|
+
/**
|
5767
|
+
* The user who updated the data lineage node.
|
5768
|
+
*/
|
5769
|
+
updatedBy?: UpdatedBy;
|
5770
|
+
}
|
5771
|
+
export interface LineageNodeTypeItem {
|
5772
|
+
/**
|
5773
|
+
* The timestamp at which the data lineage node type was created.
|
5774
|
+
*/
|
5775
|
+
createdAt?: CreatedAt;
|
5776
|
+
/**
|
5777
|
+
* The user who created the data lineage node type.
|
5778
|
+
*/
|
5779
|
+
createdBy?: CreatedBy;
|
5780
|
+
/**
|
5781
|
+
* The description of the data lineage node type.
|
5782
|
+
*/
|
5783
|
+
description?: String;
|
5784
|
+
/**
|
5785
|
+
* The ID of the domain where the data lineage node type lives.
|
5786
|
+
*/
|
5787
|
+
domainId: DomainId;
|
5788
|
+
/**
|
5789
|
+
* The forms output of the data lineage node type.
|
5790
|
+
*/
|
5791
|
+
formsOutput: FormsOutputMap;
|
5792
|
+
/**
|
5793
|
+
* The name of the data lineage node type.
|
5794
|
+
*/
|
5795
|
+
name?: String;
|
5796
|
+
/**
|
5797
|
+
* The revision of the data lineage node type.
|
5798
|
+
*/
|
5799
|
+
revision: Revision;
|
5800
|
+
/**
|
5801
|
+
* The timestamp at which the data lineage node type was updated.
|
5802
|
+
*/
|
5803
|
+
updatedAt?: UpdatedAt;
|
5804
|
+
/**
|
5805
|
+
* The user who updated the data lineage node type.
|
5806
|
+
*/
|
5807
|
+
updatedBy?: UpdatedBy;
|
5808
|
+
}
|
5605
5809
|
export interface ListAssetRevisionsInput {
|
5606
5810
|
/**
|
5607
5811
|
* The identifier of the domain.
|
@@ -5947,6 +6151,50 @@ declare namespace DataZone {
|
|
5947
6151
|
*/
|
5948
6152
|
nextToken?: PaginationToken;
|
5949
6153
|
}
|
6154
|
+
export interface ListLineageNodeHistoryInput {
|
6155
|
+
/**
|
6156
|
+
* The direction of the data lineage node refers to the lineage node having neighbors in that direction. For example, if direction is UPSTREAM, the ListLineageNodeHistory API responds with historical versions with upstream neighbors only.
|
6157
|
+
*/
|
6158
|
+
direction?: EdgeDirection;
|
6159
|
+
/**
|
6160
|
+
* The ID of the domain where you want to list the history of the specified data lineage node.
|
6161
|
+
*/
|
6162
|
+
domainIdentifier: DomainId;
|
6163
|
+
/**
|
6164
|
+
* Specifies whether the action is to return data lineage node history from the time after the event timestamp.
|
6165
|
+
*/
|
6166
|
+
eventTimestampGTE?: Timestamp;
|
6167
|
+
/**
|
6168
|
+
* Specifies whether the action is to return data lineage node history from the time prior of the event timestamp.
|
6169
|
+
*/
|
6170
|
+
eventTimestampLTE?: Timestamp;
|
6171
|
+
/**
|
6172
|
+
* The ID of the data lineage node whose history you want to list.
|
6173
|
+
*/
|
6174
|
+
identifier: LineageNodeIdentifier;
|
6175
|
+
/**
|
6176
|
+
* The maximum number of history items to return in a single call to ListLineageNodeHistory. When the number of memberships to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListLineageNodeHistory to list the next set of items.
|
6177
|
+
*/
|
6178
|
+
maxResults?: MaxResults;
|
6179
|
+
/**
|
6180
|
+
* When the number of history items is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.
|
6181
|
+
*/
|
6182
|
+
nextToken?: PaginationToken;
|
6183
|
+
/**
|
6184
|
+
* The order by which you want data lineage node history to be sorted.
|
6185
|
+
*/
|
6186
|
+
sortOrder?: SortOrder;
|
6187
|
+
}
|
6188
|
+
export interface ListLineageNodeHistoryOutput {
|
6189
|
+
/**
|
6190
|
+
* When the number of history items is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.
|
6191
|
+
*/
|
6192
|
+
nextToken?: PaginationToken;
|
6193
|
+
/**
|
6194
|
+
* The nodes returned by the ListLineageNodeHistory action.
|
6195
|
+
*/
|
6196
|
+
nodes?: LineageNodeSummaries;
|
6197
|
+
}
|
5950
6198
|
export interface ListMetadataGenerationRunsInput {
|
5951
6199
|
/**
|
5952
6200
|
* The ID of the Amazon DataZone domain where you want to list metadata generation runs.
|
@@ -6515,6 +6763,22 @@ declare namespace DataZone {
|
|
6515
6763
|
export type NotificationType = "TASK"|"EVENT"|string;
|
6516
6764
|
export type NotificationsList = NotificationOutput[];
|
6517
6765
|
export type PaginationToken = string;
|
6766
|
+
export interface PostLineageEventInput {
|
6767
|
+
/**
|
6768
|
+
* A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
6769
|
+
*/
|
6770
|
+
clientToken?: ClientToken;
|
6771
|
+
/**
|
6772
|
+
* The ID of the domain where you want to post a data lineage event.
|
6773
|
+
*/
|
6774
|
+
domainIdentifier: DomainId;
|
6775
|
+
/**
|
6776
|
+
* The data lineage event that you want to post. Only open-lineage run event are supported as events.
|
6777
|
+
*/
|
6778
|
+
event: LineageEvent;
|
6779
|
+
}
|
6780
|
+
export interface PostLineageEventOutput {
|
6781
|
+
}
|
6518
6782
|
export interface PostTimeSeriesDataPointsInput {
|
6519
6783
|
/**
|
6520
6784
|
* A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
@@ -7275,6 +7539,10 @@ declare namespace DataZone {
|
|
7275
7539
|
* The form type included in the results of the SearchTypes action.
|
7276
7540
|
*/
|
7277
7541
|
formTypeItem?: FormTypeData;
|
7542
|
+
/**
|
7543
|
+
* The details of a data lineage node type.
|
7544
|
+
*/
|
7545
|
+
lineageNodeTypeItem?: LineageNodeTypeItem;
|
7278
7546
|
}
|
7279
7547
|
export type SearchTypesResultItems = SearchTypesResultItem[];
|
7280
7548
|
export interface SearchUserProfilesInput {
|
@@ -7975,7 +8243,7 @@ declare namespace DataZone {
|
|
7975
8243
|
subject: String;
|
7976
8244
|
}
|
7977
8245
|
export type TypeName = string;
|
7978
|
-
export type TypesSearchScope = "ASSET_TYPE"|"FORM_TYPE"|string;
|
8246
|
+
export type TypesSearchScope = "ASSET_TYPE"|"FORM_TYPE"|"LINEAGE_NODE_TYPE"|string;
|
7979
8247
|
export interface UntagResourceRequest {
|
7980
8248
|
/**
|
7981
8249
|
* The ARN of the resource to be untagged in Amazon DataZone.
|
package/clients/emr.d.ts
CHANGED
@@ -2119,6 +2119,10 @@ declare namespace EMR {
|
|
2119
2119
|
* The custom AMI ID to use for the instance type.
|
2120
2120
|
*/
|
2121
2121
|
CustomAmiId?: XmlStringMaxLen256;
|
2122
|
+
/**
|
2123
|
+
* The priority at which Amazon EMR launches the Amazon EC2 instances with this instance type. Priority starts at 0, which is the highest priority. Amazon EMR considers the highest priority first.
|
2124
|
+
*/
|
2125
|
+
Priority?: NonNegativeDouble;
|
2122
2126
|
}
|
2123
2127
|
export type InstanceTypeConfigList = InstanceTypeConfig[];
|
2124
2128
|
export interface InstanceTypeSpecification {
|
@@ -2154,6 +2158,10 @@ declare namespace EMR {
|
|
2154
2158
|
* The custom AMI ID to use for the instance type.
|
2155
2159
|
*/
|
2156
2160
|
CustomAmiId?: XmlStringMaxLen256;
|
2161
|
+
/**
|
2162
|
+
* The priority at which Amazon EMR launches the Amazon EC2 instances with this instance type. Priority starts at 0, which is the highest priority. Amazon EMR considers the highest priority first.
|
2163
|
+
*/
|
2164
|
+
Priority?: NonNegativeDouble;
|
2157
2165
|
}
|
2158
2166
|
export type InstanceTypeSpecificationList = InstanceTypeSpecification[];
|
2159
2167
|
export type Integer = number;
|
@@ -2913,10 +2921,10 @@ declare namespace EMR {
|
|
2913
2921
|
}
|
2914
2922
|
export type OnDemandCapacityReservationPreference = "open"|"none"|string;
|
2915
2923
|
export type OnDemandCapacityReservationUsageStrategy = "use-capacity-reservations-first"|string;
|
2916
|
-
export type OnDemandProvisioningAllocationStrategy = "lowest-price"|string;
|
2924
|
+
export type OnDemandProvisioningAllocationStrategy = "lowest-price"|"prioritized"|string;
|
2917
2925
|
export interface OnDemandProvisioningSpecification {
|
2918
2926
|
/**
|
2919
|
-
* Specifies the strategy to use in launching On-Demand instance fleets.
|
2927
|
+
* Specifies the strategy to use in launching On-Demand instance fleets. Available options are lowest-price and prioritized. lowest-price specifies to launch the instances with the lowest price first, and prioritized specifies that Amazon EMR should launch the instances with the highest priority first. The default is lowest-price.
|
2920
2928
|
*/
|
2921
2929
|
AllocationStrategy: OnDemandProvisioningAllocationStrategy;
|
2922
2930
|
/**
|
@@ -3436,7 +3444,7 @@ declare namespace EMR {
|
|
3436
3444
|
Version?: String;
|
3437
3445
|
}
|
3438
3446
|
export type SimplifiedApplicationList = SimplifiedApplication[];
|
3439
|
-
export type SpotProvisioningAllocationStrategy = "capacity-optimized"|"price-capacity-optimized"|"lowest-price"|"diversified"|string;
|
3447
|
+
export type SpotProvisioningAllocationStrategy = "capacity-optimized"|"price-capacity-optimized"|"lowest-price"|"diversified"|"capacity-optimized-prioritized"|string;
|
3440
3448
|
export interface SpotProvisioningSpecification {
|
3441
3449
|
/**
|
3442
3450
|
* The Spot provisioning timeout period in minutes. If Spot Instances are not provisioned within this time period, the TimeOutAction is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created.
|
@@ -3451,7 +3459,7 @@ declare namespace EMR {
|
|
3451
3459
|
*/
|
3452
3460
|
BlockDurationMinutes?: WholeNumber;
|
3453
3461
|
/**
|
3454
|
-
* Specifies one of the following strategies to launch Spot Instance fleets:
|
3462
|
+
* Specifies one of the following strategies to launch Spot Instance fleets: capacity-optimized, price-capacity-optimized, lowest-price, or diversified, and capacity-optimized-prioritized. For more information on the provisioning strategies, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide for Linux Instances. When you launch a Spot Instance fleet with the old console, it automatically launches with the capacity-optimized strategy. You can't change the allocation strategy from the old console.
|
3455
3463
|
*/
|
3456
3464
|
AllocationStrategy?: SpotProvisioningAllocationStrategy;
|
3457
3465
|
}
|
package/clients/glue.d.ts
CHANGED
@@ -5542,6 +5542,8 @@ declare namespace Glue {
|
|
5542
5542
|
*/
|
5543
5543
|
FederatedDatabase?: FederatedDatabase;
|
5544
5544
|
}
|
5545
|
+
export type DatabaseAttributes = "NAME"|string;
|
5546
|
+
export type DatabaseAttributesList = DatabaseAttributes[];
|
5545
5547
|
export interface DatabaseIdentifier {
|
5546
5548
|
/**
|
5547
5549
|
* The ID of the Data Catalog in which the database resides.
|
@@ -7321,6 +7323,10 @@ declare namespace Glue {
|
|
7321
7323
|
* Allows you to specify that you want to list the databases shared with your account. The allowable values are FEDERATED, FOREIGN or ALL. If set to FEDERATED, will list the federated databases (referencing an external entity) shared with your account. If set to FOREIGN, will list the databases shared with your account. If set to ALL, will list the databases shared with your account, as well as the databases in yor local account.
|
7322
7324
|
*/
|
7323
7325
|
ResourceShareType?: ResourceShareType;
|
7326
|
+
/**
|
7327
|
+
* Specifies the database fields returned by the GetDatabases call. This parameter doesn’t accept an empty list. The request must include the NAME.
|
7328
|
+
*/
|
7329
|
+
AttributesToGet?: DatabaseAttributesList;
|
7324
7330
|
}
|
7325
7331
|
export interface GetDatabasesResponse {
|
7326
7332
|
/**
|
@@ -2229,7 +2229,7 @@ declare namespace KinesisAnalyticsV2 {
|
|
2229
2229
|
*/
|
2230
2230
|
ApplicationRestoreConfiguration?: ApplicationRestoreConfiguration;
|
2231
2231
|
}
|
2232
|
-
export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|"FLINK-1_15"|"ZEPPELIN-FLINK-3_0"|"FLINK-1_18"|string;
|
2232
|
+
export type RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|"FLINK-1_15"|"ZEPPELIN-FLINK-3_0"|"FLINK-1_18"|"FLINK-1_19"|string;
|
2233
2233
|
export interface S3ApplicationCodeLocationDescription {
|
2234
2234
|
/**
|
2235
2235
|
* The Amazon Resource Name (ARN) for the S3 bucket containing the application code.
|