Class: Aws::Connect::Types::TagContactRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::TagContactRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contact_id ⇒ String
The identifier of the contact in this instance of Amazon Connect.
-
#instance_id ⇒ String
The identifier of the Amazon Connect instance.
-
#tags ⇒ Hash<String,String>
The tags to be assigned to the contact resource.
Instance Attribute Details
#contact_id ⇒ String
The identifier of the contact in this instance of Amazon Connect.
23578 23579 23580 23581 23582 23583 23584 |
# File 'lib/aws-sdk-connect/types.rb', line 23578 class TagContactRequest < Struct.new( :contact_id, :instance_id, :tags) SENSITIVE = [] include Aws::Structure end |
#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
23578 23579 23580 23581 23582 23583 23584 |
# File 'lib/aws-sdk-connect/types.rb', line 23578 class TagContactRequest < Struct.new( :contact_id, :instance_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags to be assigned to the contact resource. For example, { “Tags”: “key2”:“value2” }.
<note markdown=“1”> Authorization is not supported by this tag.
</note>
23578 23579 23580 23581 23582 23583 23584 |
# File 'lib/aws-sdk-connect/types.rb', line 23578 class TagContactRequest < Struct.new( :contact_id, :instance_id, :tags) SENSITIVE = [] include Aws::Structure end |