Class: Aws::WellArchitected::Types::TagResourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::WellArchitected::Types::TagResourceInput
- Defined in:
- gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb
Overview
Note:
When making an API call, you may pass TagResourceInput data as a hash:
{
workload_arn: "WorkloadArn", # required
tags: { # required
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tags ⇒ Hash<String,String>
The tags for the resource.
-
#workload_arn ⇒ String
The ARN for the workload.
Instance Attribute Details
#tags ⇒ Hash<String,String>
The tags for the resource.
3052 3053 3054 3055 3056 3057 |
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 3052 class TagResourceInput < Struct.new( :workload_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#workload_arn ⇒ String
The ARN for the workload.
3052 3053 3054 3055 3056 3057 |
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 3052 class TagResourceInput < Struct.new( :workload_arn, :tags) SENSITIVE = [] include Aws::Structure end |