Class: Aws::CodeStar::Types::TagProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::TagProjectRequest
- Defined in:
- gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb
Overview
Note:
When making an API call, you may pass TagProjectRequest data as a hash:
{
id: "ProjectId", # required
tags: { # required
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the project you want to add a tag to.
-
#tags ⇒ Hash<String,String>
The tags you want to add to the project.
Instance Attribute Details
#id ⇒ String
The ID of the project you want to add a tag to.
1155 1156 1157 1158 1159 1160 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1155 class TagProjectRequest < Struct.new( :id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags you want to add to the project.
1155 1156 1157 1158 1159 1160 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 1155 class TagProjectRequest < Struct.new( :id, :tags) SENSITIVE = [] include Aws::Structure end |