Method: Aws::Connect::Types::StartTaskContactRequest#instance_id
- Defined in:
- lib/aws-sdk-connect/types.rb
#instance_id ⇒ String
The identifier of the Amazon Connect instance. You can [find the instance ID] in the Amazon Resource Name (ARN) of the instance.
[1]: docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 |
# File 'lib/aws-sdk-connect/types.rb', line 30015 class StartTaskContactRequest < Struct.new( :instance_id, :previous_contact_id, :contact_flow_id, :attributes, :name, :references, :description, :client_token, :scheduled_time, :task_template_id, :quick_connect_id, :related_contact_id, :segment_attributes) SENSITIVE = [:name, :description] include Aws::Structure end |