Class: Aws::S3Control::Types::JobManifestLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::JobManifestLocation
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass JobManifestLocation data as a hash:
{
object_arn: "S3KeyArnString", # required
object_version_id: "S3ObjectVersionId",
etag: "NonEmptyMaxLength1024String", # required
}
Contains the information required to locate a manifest object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#etag ⇒ String
The ETag for the specified manifest object.
-
#object_arn ⇒ String
The Amazon Resource Name (ARN) for a manifest object.
-
#object_version_id ⇒ String
The optional version ID to identify a specific version of the manifest object.
Instance Attribute Details
#etag ⇒ String
The ETag for the specified manifest object.
3035 3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 3035 class JobManifestLocation < Struct.new( :object_arn, :object_version_id, :etag) SENSITIVE = [] include Aws::Structure end |
#object_arn ⇒ String
The Amazon Resource Name (ARN) for a manifest object.
Replacement must be made for object keys containing special characters (such as carriage returns) when using XML requests. For more information, see XML related object key constraints.
3035 3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 3035 class JobManifestLocation < Struct.new( :object_arn, :object_version_id, :etag) SENSITIVE = [] include Aws::Structure end |
#object_version_id ⇒ String
The optional version ID to identify a specific version of the manifest object.
3035 3036 3037 3038 3039 3040 3041 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 3035 class JobManifestLocation < Struct.new( :object_arn, :object_version_id, :etag) SENSITIVE = [] include Aws::Structure end |