Class: Aws::AppSync::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass UntagResourceRequest data as a hash:
{
resource_arn: "ResourceArn", # required
tag_keys: ["TagKey"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The
GraphqlApi
Amazon Resource Name (ARN). -
#tag_keys ⇒ Array<String>
A list of
TagKey
objects.
Instance Attribute Details
#resource_arn ⇒ String
The GraphqlApi
Amazon Resource Name (ARN).
3397 3398 3399 3400 3401 3402 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3397 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of TagKey
objects.
3397 3398 3399 3400 3401 3402 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3397 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |