Class: Aws::States::Types::UntagResourceInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-states/types.rb

Overview

Note:

When making an API call, you may pass UntagResourceInput data as a hash:

{
  resource_arn: "Arn", # required
  tag_keys: ["TagKey"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) for the Step Functions state machine or activity.

Returns:

  • (String)


1921
1922
1923
1924
1925
# File 'lib/aws-sdk-states/types.rb', line 1921

class UntagResourceInput < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end

#tag_keysArray<String>

The list of tags to remove from the resource.

Returns:

  • (Array<String>)


1921
1922
1923
1924
1925
# File 'lib/aws-sdk-states/types.rb', line 1921

class UntagResourceInput < Struct.new(
  :resource_arn,
  :tag_keys)
  include Aws::Structure
end