Class: Aws::MWAA::Types::UntagResourceInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name (ARN) of the Amazon MWAA environment. For example, arn:aws:airflow:us-east-1:123456789012:environment/MyMWAAEnvironment.

Returns:

  • (String)


1280
1281
1282
1283
1284
1285
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1280

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

#tag_keysArray<String>

The key-value tag pair you want to remove. For example, "Environment": "Staging".

Returns:

  • (Array<String>)


1280
1281
1282
1283
1284
1285
# File 'gems/aws-sdk-mwaa/lib/aws-sdk-mwaa/types.rb', line 1280

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