Class: Aws::CodeDeploy::Types::UntagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::UntagResourceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that specifies from which resource to disassociate the tags with the keys in the ‘TagKeys` input parameter.
-
#tag_keys ⇒ Array<String>
A list of keys of ‘Tag` objects.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that specifies from which resource to disassociate the tags with the keys in the ‘TagKeys` input parameter.
4955 4956 4957 4958 4959 4960 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4955 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of keys of ‘Tag` objects. The `Tag` objects identified by the keys are disassociated from the resource specified by the `ResourceArn` input parameter.
4955 4956 4957 4958 4959 4960 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4955 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |