Struct aws_sdk_rust::aws::s3::object::MultipartUploadCompleteOutput
[−]
[src]
pub struct MultipartUploadCompleteOutput { pub request_charged: RequestCharged, pub bucket: BucketName, pub version_id: ObjectVersionId, pub e_tag: ETag, pub location: Location, pub key: ObjectKey, pub server_side_encryption: ServerSideEncryption, pub ssekms_key_id: SSEKMSKeyId, pub expiration: Expiration, }
Fields
request_charged: RequestCharged
bucket: BucketName
version_id: ObjectVersionId
Version of the object.
e_tag: ETag
Entity tag of the object.
location: Location
key: ObjectKey
server_side_encryption: ServerSideEncryption
The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
ssekms_key_id: SSEKMSKeyId
If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
expiration: Expiration
If the object expiration is configured, this will contain the expiration date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded.
Trait Implementations
impl Debug for MultipartUploadCompleteOutput
[src]
impl Default for MultipartUploadCompleteOutput
[src]
fn default() -> MultipartUploadCompleteOutput
Returns the "default value" for a type. Read more
impl Decodable for MultipartUploadCompleteOutput
[src]
fn decode<__D: Decoder>(
__arg_0: &mut __D
) -> Result<MultipartUploadCompleteOutput, __D::Error>
__arg_0: &mut __D
) -> Result<MultipartUploadCompleteOutput, __D::Error>
Deserialize a value using a Decoder
.