Class: Aws::OAM::Types::GetSinkInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::OAM::Types::GetSinkInput
- Defined in:
- gems/aws-sdk-oam/lib/aws-sdk-oam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identifier ⇒ String
The ARN of the sink to retrieve information for.
-
#include_tags ⇒ Boolean
Specifies whether to include the tags associated with the sink in the response.
Instance Attribute Details
#identifier ⇒ String
The ARN of the sink to retrieve information for.
342 343 344 345 346 347 |
# File 'gems/aws-sdk-oam/lib/aws-sdk-oam/types.rb', line 342 class GetSinkInput < Struct.new( :identifier, :include_tags) SENSITIVE = [] include Aws::Structure end |
#include_tags ⇒ Boolean
Specifies whether to include the tags associated with the sink in
the response. When IncludeTags
is set to true
and the caller has
the required permission, oam:ListTagsForResource
, the API will
return the tags for the specified resource. If the caller doesn't
have the required permission, oam:ListTagsForResource
, the API
will raise an exception.
The default value is false
.
342 343 344 345 346 347 |
# File 'gems/aws-sdk-oam/lib/aws-sdk-oam/types.rb', line 342 class GetSinkInput < Struct.new( :identifier, :include_tags) SENSITIVE = [] include Aws::Structure end |