Class: Aws::S3Control::Types::PutJobTaggingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::PutJobTaggingRequest
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass PutJobTaggingRequest data as a hash:
{
account_id: "AccountId", # required
job_id: "JobId", # required
tags: [ # required
{
key: "TagKeyString", # required
value: "TagValueString", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Amazon Web Services account ID associated with the S3 Batch Operations job.
-
#job_id ⇒ String
The ID for the S3 Batch Operations job whose tags you want to replace.
-
#tags ⇒ Array<Types::S3Tag>
The set of tags to associate with the S3 Batch Operations job.
Instance Attribute Details
#account_id ⇒ String
The Amazon Web Services account ID associated with the S3 Batch Operations job.
4973 4974 4975 4976 4977 4978 4979 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4973 class PutJobTaggingRequest < Struct.new( :account_id, :job_id, :tags) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The ID for the S3 Batch Operations job whose tags you want to replace.
4973 4974 4975 4976 4977 4978 4979 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4973 class PutJobTaggingRequest < Struct.new( :account_id, :job_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::S3Tag>
The set of tags to associate with the S3 Batch Operations job.
4973 4974 4975 4976 4977 4978 4979 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4973 class PutJobTaggingRequest < Struct.new( :account_id, :job_id, :tags) SENSITIVE = [] include Aws::Structure end |