Class: Aws::CodeDeploy::Types::TagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::TagResourceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass TagResourceInput data as a hash:
{
resource_arn: "Arn", # required
tags: [ # required
{
key: "Key",
value: "Value",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of a resource, such as a CodeDeploy application or deployment group.
-
#tags ⇒ Array<Types::Tag>
A list of tags that
TagResourceassociates with a resource.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of a resource, such as a CodeDeploy application or deployment group.
5328 5329 5330 5331 5332 5333 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5328 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags that TagResource associates with a resource. The resource is identified by the ResourceArn input parameter.
5328 5329 5330 5331 5332 5333 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 5328 class TagResourceInput < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |