You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* <p>Status information about the replication process, where you use the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html">ReplicateInstance</a> API to create a replica of your Amazon Connect instance in
865
+
* another Amazon Web Services Region. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/setup-connect-global-resiliency.html">Set up Amazon Connect
866
+
* Global Resiliency</a> in the <i>Amazon Connect Administrator Guide</i>.
867
+
* </p>
868
+
* @public
869
+
*/
870
+
exportinterfaceReplicationStatusSummary{
871
+
/**
872
+
* <p>The Amazon Web Services Region. This can be either the source or the replica Region,
873
+
* depending where it appears in the summary list.</p>
874
+
* @public
875
+
*/
876
+
Region?: string;
877
+
878
+
/**
879
+
* <p>The state of the replication.</p>
880
+
* @public
881
+
*/
882
+
ReplicationStatus?: InstanceReplicationStatus;
883
+
884
+
/**
885
+
* <p>A description of the replication status. Use this information to resolve any issues that are
886
+
* preventing the successful replication of your Amazon Connect instance to another
887
+
* Region.</p>
888
+
* @public
889
+
*/
890
+
ReplicationStatusReason?: string;
891
+
}
892
+
893
+
/**
894
+
* <p>Details about the status of the replication of a source Amazon Connect instance across
895
+
* Amazon Web Services Regions. Use these details to understand the general status of a given
896
+
* replication. For information about why a replication process may fail, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html#why-replicateinstance-fails">Why a ReplicateInstance call fails</a> in the <i>Create a replica of your existing
897
+
* Amazon Connect instance</i> topic in the <i>Amazon Connect Administrator
898
+
* Guide</i>. </p>
899
+
* @public
900
+
*/
901
+
exportinterfaceReplicationConfiguration{
902
+
/**
903
+
* <p>A list of replication status summaries. The summaries contain details about the replication
904
+
* of configuration information for Amazon Connect resources, for each Amazon Web Services
* <p>Status information about the replication process. This field is included only when you are
941
+
* using the <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_ReplicateInstance.html">ReplicateInstance</a> API to
942
+
* replicate an Amazon Connect instance across Amazon Web Services Regions. For information about
943
+
* replicating Amazon Connect instances, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-replica-connect-instance.html">Create a replica of your
944
+
* existing Amazon Connect instance</a> in the <i>Amazon Connect Administrator
* <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
9780
-
* @public
9781
-
*/
9782
-
InstanceId: string|undefined;
9783
-
9784
-
/**
9785
-
* <p>The token for the next set of results. Use the value returned in the previous
9786
-
* response in the next request to retrieve the next set of results.</p>
9787
-
* <important>
9788
-
* <p>It is not expected that you set this because the value returned in the previous response is
9789
-
* always null.</p>
9790
-
* </important>
9791
-
* @public
9792
-
*/
9793
-
NextToken?: string;
9794
-
9795
-
/**
9796
-
* <p>The maximum number of results to return per page.</p>
9797
-
* <important>
9798
-
* <p>It is not expected that you set this.</p>
9799
-
* </important>
9800
-
* @public
9801
-
*/
9802
-
MaxResults?: number;
9803
-
9804
-
/**
9805
-
* <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
9806
-
* Tasks can only be created from <code>ACTIVE</code> templates.
9807
-
* If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
9808
-
* @public
9809
-
*/
9810
-
Status?: TaskTemplateStatus;
9811
-
9812
-
/**
9813
-
* <p>The name of the task template.</p>
9814
-
* @public
9815
-
*/
9816
-
Name?: string;
9817
-
}
9818
-
9819
-
/**
9820
-
* <p>Contains summary information about the task template.</p>
9821
-
* @public
9822
-
*/
9823
-
exportinterfaceTaskTemplateMetadata{
9824
-
/**
9825
-
* <p>A unique identifier for the task template.</p>
9826
-
* @public
9827
-
*/
9828
-
Id?: string;
9829
-
9830
-
/**
9831
-
* <p>The Amazon Resource Name (ARN) of the task template.</p>
9832
-
* @public
9833
-
*/
9834
-
Arn?: string;
9835
-
9836
-
/**
9837
-
* <p>The name of the task template.</p>
9838
-
* @public
9839
-
*/
9840
-
Name?: string;
9841
-
9842
-
/**
9843
-
* <p>The description of the task template.</p>
9844
-
* @public
9845
-
*/
9846
-
Description?: string;
9847
-
9848
-
/**
9849
-
* <p>Marks a template as <code>ACTIVE</code> or <code>INACTIVE</code> for a task to refer to it.
9850
-
* Tasks can only be created from <code>ACTIVE</code> templates.
9851
-
* If a template is marked as <code>INACTIVE</code>, then a task that refers to this template cannot be created.</p>
9852
-
* @public
9853
-
*/
9854
-
Status?: TaskTemplateStatus;
9855
-
9856
-
/**
9857
-
* <p>The timestamp when the task template was last modified.</p>
9858
-
* @public
9859
-
*/
9860
-
LastModifiedTime?: Date;
9861
-
9862
-
/**
9863
-
* <p>The timestamp when the task template was created.</p>
9864
-
* @public
9865
-
*/
9866
-
CreatedTime?: Date;
9867
-
}
9868
-
9869
-
/**
9870
-
* @public
9871
-
*/
9872
-
exportinterfaceListTaskTemplatesResponse{
9873
-
/**
9874
-
* <p>Provides details about a list of task templates belonging to an instance.</p>
9875
-
* @public
9876
-
*/
9877
-
TaskTemplates?: TaskTemplateMetadata[];
9878
-
9879
-
/**
9880
-
* <p>If there are additional results, this is the token for the next set of results.</p>
9881
-
* <important>
9882
-
* <p>This is always returned as a null in the response.</p>
0 commit comments