Class: Aws::RAM::Types::UntagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

Specifies the [Amazon Resource Name (ARN)] of the managed permission that you want to remove tags from. You must specify either ‘resourceArn`, or `resourceShareArn`, but not both.

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (String)


3870
3871
3872
3873
3874
3875
3876
# File 'lib/aws-sdk-ram/types.rb', line 3870

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

#resource_share_arnString

Specifies the [Amazon Resource Name (ARN)] of the resource share that you want to remove tags from. The tags are removed from the resource share, not the resources in the resource share. You must specify either ‘resourceShareArn`, or `resourceArn`, but not both.

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (String)


3870
3871
3872
3873
3874
3875
3876
# File 'lib/aws-sdk-ram/types.rb', line 3870

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

#tag_keysArray<String>

Specifies a list of one or more tag keys that you want to remove.

Returns:

  • (Array<String>)


3870
3871
3872
3873
3874
3875
3876
# File 'lib/aws-sdk-ram/types.rb', line 3870

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