Class: Aws::PaymentCryptography::Types::UntagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptography::Types::UntagResourceInput
- Defined in:
- gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The
KeyARNof the key whose tags are being removed. -
#tag_keys ⇒ Array<String>
One or more tag keys.
Instance Attribute Details
#resource_arn ⇒ String
The KeyARN of the key whose tags are being removed.
2671 2672 2673 2674 2675 2676 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 2671 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
One or more tag keys. Don't include the tag values.
If the Amazon Web Services Payment Cryptography key doesn't have the specified tag key, Amazon Web Services Payment Cryptography doesn't throw an exception or return a response. To confirm that the operation succeeded, use the ListTagsForResource operation.
2671 2672 2673 2674 2675 2676 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 2671 class UntagResourceInput < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |