Class: Aws::LicenseManager::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LicenseManager::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource_arn: "String", # required
tags: [ # required
{
key: "String",
value: "String",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
Amazon Resource Name (ARN) of the license configuration.
-
#tags ⇒ Array<Types::Tag>
One or more tags.
Instance Attribute Details
#resource_arn ⇒ String
Amazon Resource Name (ARN) of the license configuration.
3534 3535 3536 3537 3538 3539 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 3534 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
One or more tags.
3534 3535 3536 3537 3538 3539 |
# File 'gems/aws-sdk-licensemanager/lib/aws-sdk-licensemanager/types.rb', line 3534 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |