Method: Aws::S3::Types::CompleteMultipartUploadOutput#expiration
- Defined in:
- lib/aws-sdk-s3/types.rb
#expiration ⇒ String
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.
<note markdown=“1”> This functionality is not supported for directory buckets.
</note>
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/aws-sdk-s3/types.rb', line 1099 class CompleteMultipartUploadOutput < Struct.new( :location, :bucket, :key, :expiration, :etag, :checksum_crc32, :checksum_crc32c, :checksum_crc64nvme, :checksum_sha1, :checksum_sha256, :checksum_type, :server_side_encryption, :version_id, :ssekms_key_id, :bucket_key_enabled, :request_charged) SENSITIVE = [:ssekms_key_id] include Aws::Structure end |