Class: Aws::AppRunner::Types::UntagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the resource that you want to remove tags from.

It must be the ARN of an App Runner resource.

Returns:

  • (String)


2856
2857
2858
2859
2860
2861
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2856

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

#tag_keysArray<String>

A list of tag keys that you want to remove.

Returns:

  • (Array<String>)


2856
2857
2858
2859
2860
2861
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2856

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