Class: Aws::Cloud9::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:tag_keys]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the Cloud9 development environment to remove tags from.

Returns:

  • (String)


709
710
711
712
713
714
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 709

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = [:tag_keys]
  include Aws::Structure
end

#tag_keysArray<String>

The tag names of the tags to remove from the given Cloud9 development environment.

Returns:

  • (Array<String>)


709
710
711
712
713
714
# File 'gems/aws-sdk-cloud9/lib/aws-sdk-cloud9/types.rb', line 709

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = [:tag_keys]
  include Aws::Structure
end