S3

Client

class S3.Client

A low-level client representing Amazon Simple Storage Service (S3):

import boto3

client = boto3.client('s3')

These are the available methods:

abort_multipart_upload(**kwargs)

Aborts a multipart upload.

To verify that all parts have been removed, so you don't get charged for the part storage, you should call the List Parts operation and ensure the parts list is empty.

See also: AWS API Documentation

Request Syntax

response = client.abort_multipart_upload(
    Bucket='string',
    Key='string',
    UploadId='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • UploadId (string) -- [REQUIRED]
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

can_paginate(operation_name)

Check if an operation can be paginated.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Returns
True if the operation can be paginated, False otherwise.
complete_multipart_upload(**kwargs)

Completes a multipart upload by assembling previously uploaded parts.

See also: AWS API Documentation

Request Syntax

response = client.complete_multipart_upload(
    Bucket='string',
    Key='string',
    MultipartUpload={
        'Parts': [
            {
                'ETag': 'string',
                'PartNumber': 123
            },
        ]
    },
    UploadId='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • MultipartUpload (dict) --
    • Parts (list) --
      • (dict) --
        • ETag (string) --

          Entity tag returned when the part was uploaded.

        • PartNumber (integer) --

          Part number that identifies the part. This is a positive integer between 1 and 10,000.

  • UploadId (string) -- [REQUIRED]
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'Location': 'string',
    'Bucket': 'string',
    'Key': 'string',
    'Expiration': 'string',
    'ETag': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'VersionId': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • Location (string) --

    • Bucket (string) --

    • Key (string) --

    • 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.

    • ETag (string) --

      Entity tag of the object.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • VersionId (string) --

      Version of the object.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

copy(CopySource, Bucket, Key, ExtraArgs=None, Callback=None, SourceClient=None, Config=None)

Copy an object from one S3 location to another.

This is a managed transfer which will perform a multipart copy in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.resource('s3')
copy_source = {
    'Bucket': 'mybucket',
    'Key': 'mykey'
}
s3.meta.client.copy(copy_source, 'otherbucket', 'otherkey')
Parameters
  • CopySource (dict) -- The name of the source bucket, key name of the source object, and optional version ID of the source object. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • Bucket (str) -- The name of the bucket to copy to
  • Key (str) -- The name of the key to copy to
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the copy.
  • SourceClient (botocore or boto3 Client) -- The client to be used for operation that may happen at the source object. For example, this client is used for the head_object that determines the size of the copy. If no client is provided, the current client is used as the client for the source object.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the copy.
copy_object(**kwargs)

Creates a copy of an object that is already stored in Amazon S3.

See also: AWS API Documentation

Request Syntax

response = client.copy_object(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    Bucket='string',
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentType='string',
    CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'},
    CopySourceIfMatch='string',
    CopySourceIfModifiedSince=datetime(2015, 1, 1),
    CopySourceIfNoneMatch='string',
    CopySourceIfUnmodifiedSince=datetime(2015, 1, 1),
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Key='string',
    Metadata={
        'string': 'string'
    },
    MetadataDirective='COPY'|'REPLACE',
    TaggingDirective='COPY'|'REPLACE',
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    CopySourceSSECustomerAlgorithm='string',
    CopySourceSSECustomerKey='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • Bucket (string) -- [REQUIRED]
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • CopySource (str or dict) -- [REQUIRED] The name of the source bucket, key name of the source object, and optional version ID of the source object. You can either provide this value as a string or a dictionary. The string form is {bucket}/{key} or {bucket}/{key}?versionId={versionId} if you want to copy a specific version. You can also provide this value as a dictionary. The dictionary format is recommended over the string format because it is more explicit. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • CopySourceIfMatch (string) -- Copies the object if its entity tag (ETag) matches the specified tag.
  • CopySourceIfModifiedSince (datetime) -- Copies the object if it has been modified since the specified time.
  • CopySourceIfNoneMatch (string) -- Copies the object if its entity tag (ETag) is different than the specified ETag.
  • CopySourceIfUnmodifiedSince (datetime) -- Copies the object if it hasn't been modified since the specified time.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Key (string) -- [REQUIRED]
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • MetadataDirective (string) -- Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.
  • TaggingDirective (string) -- Specifies whether the object tag-set are copied from the source object or replaced with tag-set provided in the request.
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • CopySourceSSECustomerAlgorithm (string) -- Specifies the algorithm to use when decrypting the source object (e.g., AES256).
  • CopySourceSSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
  • CopySourceSSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object destination object this value must be used in conjunction with the TaggingDirective. The tag-set must be encoded as URL Query parameters
Return type

dict

Returns

Response Syntax

{
    'CopyObjectResult': {
        'ETag': 'string',
        'LastModified': datetime(2015, 1, 1)
    },
    'Expiration': 'string',
    'CopySourceVersionId': 'string',
    'VersionId': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • CopyObjectResult (dict) --

      • ETag (string) --
      • LastModified (datetime) --
    • Expiration (string) --

      If the object expiration is configured, the response includes this header.

    • CopySourceVersionId (string) --

    • VersionId (string) --

      Version ID of the newly created copy.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

create_bucket(**kwargs)

Creates a new bucket.

See also: AWS API Documentation

Request Syntax

response = client.create_bucket(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read',
    Bucket='string',
    CreateBucketConfiguration={
        'LocationConstraint': 'EU'|'eu-west-1'|'us-west-1'|'us-west-2'|'ap-south-1'|'ap-southeast-1'|'ap-southeast-2'|'ap-northeast-1'|'sa-east-1'|'cn-north-1'|'eu-central-1'
    },
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWrite='string',
    GrantWriteACP='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the bucket.
  • Bucket (string) -- [REQUIRED]
  • CreateBucketConfiguration (dict) --
    • LocationConstraint (string) --

      Specifies the region where the bucket will be created. If you don't specify a region, the bucket will be created in US Standard.

  • GrantFullControl (string) -- Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
  • GrantRead (string) -- Allows grantee to list the objects in the bucket.
  • GrantReadACP (string) -- Allows grantee to read the bucket ACL.
  • GrantWrite (string) -- Allows grantee to create, overwrite, and delete any object in the bucket.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable bucket.
Return type

dict

Returns

Response Syntax

{
    'Location': 'string'
}

Response Structure

  • (dict) --
    • Location (string) --

create_multipart_upload(**kwargs)

Initiates a multipart upload and returns an upload ID.

Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.

See also: AWS API Documentation

Request Syntax

response = client.create_multipart_upload(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    Bucket='string',
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentType='string',
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Key='string',
    Metadata={
        'string': 'string'
    },
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • Bucket (string) -- [REQUIRED]
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Key (string) -- [REQUIRED]
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object. The tag-set must be encoded as URL Query parameters
Return type

dict

Returns

Response Syntax

{
    'AbortDate': datetime(2015, 1, 1),
    'AbortRuleId': 'string',
    'Bucket': 'string',
    'Key': 'string',
    'UploadId': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • AbortDate (datetime) --

      Date when multipart upload will become eligible for abort operation by lifecycle.

    • AbortRuleId (string) --

      Id of the lifecycle rule that makes a multipart upload eligible for abort operation.

    • Bucket (string) --

      Name of the bucket to which the multipart upload was initiated.

    • Key (string) --

      Object key for which the multipart upload was initiated.

    • UploadId (string) --

      ID for the initiated multipart upload.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

delete_bucket(**kwargs)

Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
delete_bucket_analytics_configuration(**kwargs)

Deletes an analytics configuration for the bucket (specified by the analytics configuration ID).

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_analytics_configuration(
    Bucket='string',
    Id='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket from which an analytics configuration is deleted.

  • Id (string) --

    [REQUIRED]

    The identifier used to represent an analytics configuration.

Returns

None

delete_bucket_cors(**kwargs)

Deletes the cors configuration information set for the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_cors(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
delete_bucket_encryption(**kwargs)

Deletes the server-side encryption configuration from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_encryption(
    Bucket='string'
)
Parameters
Bucket (string) --

[REQUIRED]

The name of the bucket containing the server-side encryption configuration to delete.

Returns
None
delete_bucket_inventory_configuration(**kwargs)

Deletes an inventory configuration (identified by the inventory ID) from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_inventory_configuration(
    Bucket='string',
    Id='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket containing the inventory configuration to delete.

  • Id (string) --

    [REQUIRED]

    The ID used to identify the inventory configuration.

Returns

None

delete_bucket_lifecycle(**kwargs)

Deletes the lifecycle configuration from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_lifecycle(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
delete_bucket_metrics_configuration(**kwargs)

Deletes a metrics configuration (specified by the metrics configuration ID) from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_metrics_configuration(
    Bucket='string',
    Id='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket containing the metrics configuration to delete.

  • Id (string) --

    [REQUIRED]

    The ID used to identify the metrics configuration.

Returns

None

delete_bucket_policy(**kwargs)

Deletes the policy from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_policy(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
delete_bucket_replication(**kwargs)

Deletes the replication configuration from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_replication(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
delete_bucket_tagging(**kwargs)

Deletes the tags from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_tagging(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
delete_bucket_website(**kwargs)

This operation removes the website configuration from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.delete_bucket_website(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
delete_object(**kwargs)

Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.

See also: AWS API Documentation

Request Syntax

response = client.delete_object(
    Bucket='string',
    Key='string',
    MFA='string',
    VersionId='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'DeleteMarker': True|False,
    'VersionId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • DeleteMarker (boolean) --

      Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.

    • VersionId (string) --

      Returns the version ID of the delete marker created as a result of the DELETE operation.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

delete_object_tagging(**kwargs)

Removes the tag-set from an existing object.

See also: AWS API Documentation

Request Syntax

response = client.delete_object_tagging(
    Bucket='string',
    Key='string',
    VersionId='string'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • VersionId (string) -- The versionId of the object that the tag-set will be removed from.
Return type

dict

Returns

Response Syntax

{
    'VersionId': 'string'
}

Response Structure

  • (dict) --

    • VersionId (string) --

      The versionId of the object the tag-set was removed from.

delete_objects(**kwargs)

This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.

See also: AWS API Documentation

Request Syntax

response = client.delete_objects(
    Bucket='string',
    Delete={
        'Objects': [
            {
                'Key': 'string',
                'VersionId': 'string'
            },
        ],
        'Quiet': True|False
    },
    MFA='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Delete (dict) --

    [REQUIRED]

    • Objects (list) -- [REQUIRED]
      • (dict) --
        • Key (string) -- [REQUIRED]

          Key name of the object to delete.

        • VersionId (string) --

          VersionId for the specific version of the object to delete.

    • Quiet (boolean) --

      Element to enable quiet mode for the request. When you add this element, you must set its value to true.

  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'Deleted': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'DeleteMarker': True|False,
            'DeleteMarkerVersionId': 'string'
        },
    ],
    'RequestCharged': 'requester',
    'Errors': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'Code': 'string',
            'Message': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • Deleted (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • DeleteMarker (boolean) --
        • DeleteMarkerVersionId (string) --
    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • Errors (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • Code (string) --
        • Message (string) --

download_file(Bucket, Key, Filename, ExtraArgs=None, Callback=None, Config=None)

Download an S3 object to a file.

Usage:

import boto3
s3 = boto3.resource('s3')
s3.meta.client.download_file('mybucket', 'hello.txt', '/tmp/hello.txt')

Similar behavior as S3Transfer's download_file() method, except that parameters are capitalized. Detailed examples can be found at S3Transfer's Usage.

Parameters
  • Filename (str) -- The path to the file to download to.
  • Bucket (str) -- The name of the bucket to download from.
  • Key (str) -- The name of the key to download from.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the download.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the transfer.
download_fileobj(Bucket, Key, Fileobj, ExtraArgs=None, Callback=None, Config=None)

Download an object from S3 to a file-like object.

The file-like object must be in binary mode.

This is a managed transfer which will perform a multipart download in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.client('s3')

with open('filename', 'wb') as data:
    s3.download_fileobj('mybucket', 'mykey', data)
Parameters
  • Fileobj (a file-like object) -- A file-like object to download into. At a minimum, it must implement the write method and must accept bytes.
  • Bucket (str) -- The name of the bucket to download from.
  • Key (str) -- The name of the key to download from.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the download.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the download.
generate_presigned_post(Bucket, Key, Fields=None, Conditions=None, ExpiresIn=3600)

Builds the url and the form fields used for a presigned s3 post

Parameters
  • Bucket (string) -- The name of the bucket to presign the post to. Note that bucket related conditions should not be included in the conditions parameter.
  • Key (string) -- Key name, optionally add ${filename} to the end to attach the submitted filename. Note that key related conditions and fields are filled out for you and should not be included in the Fields or Conditions parameter.
  • Fields (dict) --

    A dictionary of prefilled form fields to build on top of. Elements that may be included are acl, Cache-Control, Content-Type, Content-Disposition, Content-Encoding, Expires, success_action_redirect, redirect, success_action_status, and x-amz-meta-.

    Note that if a particular element is included in the fields dictionary it will not be automatically added to the conditions list. You must specify a condition for the element as well.

  • Conditions (list) --

    A list of conditions to include in the policy. Each element can be either a list or a structure. For example:

    [
    {"acl": "public-read"}, ["content-length-range", 2, 5], ["starts-with", "$success_action_redirect", ""]

    ]

    Conditions that are included may pertain to acl, content-length-range, Cache-Control, Content-Type, Content-Disposition, Content-Encoding, Expires, success_action_redirect, redirect, success_action_status, and/or x-amz-meta-.

    Note that if you include a condition, you must specify the a valid value in the fields dictionary as well. A value will not be added automatically to the fields dictionary based on the conditions.

  • ExpiresIn (int) -- The number of seconds the presigned post is valid for.
Return type

dict

Returns

A dictionary with two elements: url and fields. Url is the url to post to. Fields is a dictionary filled with the form fields and respective values to use when submitting the post. For example:

{'url': 'https://mybucket.s3.amazonaws.com
'fields': {'acl': 'public-read',

'key': 'mykey', 'signature': 'mysignature', 'policy': 'mybase64 encoded policy'}

}

generate_presigned_url(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)

Generate a presigned url given a client, its method, and arguments

Parameters
  • ClientMethod (string) -- The client method to presign for
  • Params (dict) -- The parameters normally passed to ClientMethod.
  • ExpiresIn (int) -- The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds)
  • HttpMethod (string) -- The http method to use on the generated url. By default, the http method is whatever is used in the method's model.
Returns

The presigned url

get_bucket_accelerate_configuration(**kwargs)

Returns the accelerate configuration of a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_accelerate_configuration(
    Bucket='string'
)
Parameters
Bucket (string) --

[REQUIRED]

Name of the bucket for which the accelerate configuration is retrieved.

Return type
dict
Returns
Response Syntax
{
    'Status': 'Enabled'|'Suspended'
}

Response Structure

  • (dict) --
    • Status (string) --

      The accelerate configuration of the bucket.

get_bucket_acl(**kwargs)

Gets the access control policy for the bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_acl(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'Owner': {
        'DisplayName': 'string',
        'ID': 'string'
    },
    'Grants': [
        {
            'Grantee': {
                'DisplayName': 'string',
                'EmailAddress': 'string',
                'ID': 'string',
                'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                'URI': 'string'
            },
            'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
        },
    ]
}

Response Structure

  • (dict) --
    • Owner (dict) --
      • DisplayName (string) --
      • ID (string) --
    • Grants (list) --

      A list of grants.

      • (dict) --
        • Grantee (dict) --
          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) --

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Specifies the permission given to the grantee.

get_bucket_analytics_configuration(**kwargs)

Gets an analytics configuration for the bucket (specified by the analytics configuration ID).

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_analytics_configuration(
    Bucket='string',
    Id='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket from which an analytics configuration is retrieved.

  • Id (string) --

    [REQUIRED]

    The identifier used to represent an analytics configuration.

Return type

dict

Returns

Response Syntax

{
    'AnalyticsConfiguration': {
        'Id': 'string',
        'Filter': {
            'Prefix': 'string',
            'Tag': {
                'Key': 'string',
                'Value': 'string'
            },
            'And': {
                'Prefix': 'string',
                'Tags': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ]
            }
        },
        'StorageClassAnalysis': {
            'DataExport': {
                'OutputSchemaVersion': 'V_1',
                'Destination': {
                    'S3BucketDestination': {
                        'Format': 'CSV',
                        'BucketAccountId': 'string',
                        'Bucket': 'string',
                        'Prefix': 'string'
                    }
                }
            }
        }
    }
}

Response Structure

  • (dict) --

    • AnalyticsConfiguration (dict) --

      The configuration and any analyses for the analytics filter.

      • Id (string) --

        The identifier used to represent an analytics configuration.

      • Filter (dict) --

        The filter used to describe a set of objects for analyses. A filter must have exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no filter is provided, all objects will be considered in any analysis.

        • Prefix (string) --

          The prefix to use when evaluating an analytics filter.

        • Tag (dict) --

          The tag to use when evaluating an analytics filter.

          • Key (string) --

            Name of the tag.

          • Value (string) --

            Value of the tag.

        • And (dict) --

          A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.

          • Prefix (string) --

            The prefix to use when evaluating an AND predicate.

          • Tags (list) --

            The list of tags to use when evaluating an AND predicate.

            • (dict) --

              • Key (string) --

                Name of the tag.

              • Value (string) --

                Value of the tag.

      • StorageClassAnalysis (dict) --

        If present, it indicates that data related to access patterns will be collected and made available to analyze the tradeoffs between different storage classes.

        • DataExport (dict) --

          A container used to describe how data related to the storage class analysis should be exported.

          • OutputSchemaVersion (string) --

            The version of the output schema to use when exporting data. Must be V_1.

          • Destination (dict) --

            The place to store the data for an analysis.

            • S3BucketDestination (dict) --

              A destination signifying output to an S3 bucket.

              • Format (string) --

                The file format used when exporting data to Amazon S3.

              • BucketAccountId (string) --

                The account ID that owns the destination bucket. If no account ID is provided, the owner will not be validated prior to exporting data.

              • Bucket (string) --

                The Amazon resource name (ARN) of the bucket to which data is exported.

              • Prefix (string) --

                The prefix to use when exporting data. The exported data begins with this prefix.

get_bucket_cors(**kwargs)

Returns the cors configuration for the bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_cors(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'CORSRules': [
        {
            'AllowedHeaders': [
                'string',
            ],
            'AllowedMethods': [
                'string',
            ],
            'AllowedOrigins': [
                'string',
            ],
            'ExposeHeaders': [
                'string',
            ],
            'MaxAgeSeconds': 123
        },
    ]
}

Response Structure

  • (dict) --
    • CORSRules (list) --
      • (dict) --
        • AllowedHeaders (list) --

          Specifies which headers are allowed in a pre-flight OPTIONS request.

          • (string) --
        • AllowedMethods (list) --

          Identifies HTTP methods that the domain/origin specified in the rule is allowed to execute.

          • (string) --
        • AllowedOrigins (list) --

          One or more origins you want customers to be able to access the bucket from.

          • (string) --
        • ExposeHeaders (list) --

          One or more headers in the response that you want customers to be able to access from their applications (for example, from a JavaScript XMLHttpRequest object).

          • (string) --
        • MaxAgeSeconds (integer) --

          The time in seconds that your browser is to cache the preflight response for the specified resource.

get_bucket_encryption(**kwargs)

Returns the server-side encryption configuration of a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_encryption(
    Bucket='string'
)
Parameters
Bucket (string) --

[REQUIRED]

The name of the bucket from which the server-side encryption configuration is retrieved.

Return type
dict
Returns
Response Syntax
{
    'ServerSideEncryptionConfiguration': {
        'Rules': [
            {
                'ApplyServerSideEncryptionByDefault': {
                    'SSEAlgorithm': 'AES256'|'aws:kms',
                    'KMSMasterKeyID': 'string'
                }
            },
        ]
    }
}

Response Structure

  • (dict) --
    • ServerSideEncryptionConfiguration (dict) --

      Container for server-side encryption configuration rules. Currently S3 supports one rule only.

      • Rules (list) --

        Container for information about a particular server-side encryption configuration rule.

        • (dict) --

          Container for information about a particular server-side encryption configuration rule.

          • ApplyServerSideEncryptionByDefault (dict) --

            Describes the default server-side encryption to apply to new objects in the bucket. If Put Object request does not specify any server-side encryption, this default encryption will be applied.

            • SSEAlgorithm (string) --

              Server-side encryption algorithm to use for the default encryption.

            • KMSMasterKeyID (string) --

              KMS master key ID to use for the default encryption. This parameter is allowed if SSEAlgorithm is aws:kms.

get_bucket_inventory_configuration(**kwargs)

Returns an inventory configuration (identified by the inventory ID) from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_inventory_configuration(
    Bucket='string',
    Id='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket containing the inventory configuration to retrieve.

  • Id (string) --

    [REQUIRED]

    The ID used to identify the inventory configuration.

Return type

dict

Returns

Response Syntax

{
    'InventoryConfiguration': {
        'Destination': {
            'S3BucketDestination': {
                'AccountId': 'string',
                'Bucket': 'string',
                'Format': 'CSV'|'ORC',
                'Prefix': 'string',
                'Encryption': {
                    'SSES3': {},
                    'SSEKMS': {
                        'KeyId': 'string'
                    }
                }
            }
        },
        'IsEnabled': True|False,
        'Filter': {
            'Prefix': 'string'
        },
        'Id': 'string',
        'IncludedObjectVersions': 'All'|'Current',
        'OptionalFields': [
            'Size'|'LastModifiedDate'|'StorageClass'|'ETag'|'IsMultipartUploaded'|'ReplicationStatus'|'EncryptionStatus',
        ],
        'Schedule': {
            'Frequency': 'Daily'|'Weekly'
        }
    }
}

Response Structure

  • (dict) --

    • InventoryConfiguration (dict) --

      Specifies the inventory configuration.

      • Destination (dict) --

        Contains information about where to publish the inventory results.

        • S3BucketDestination (dict) --

          Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.

          • AccountId (string) --

            The ID of the account that owns the destination bucket.

          • Bucket (string) --

            The Amazon resource name (ARN) of the bucket where inventory results will be published.

          • Format (string) --

            Specifies the output format of the inventory results.

          • Prefix (string) --

            The prefix that is prepended to all inventory results.

          • Encryption (dict) --

            Contains the type of server-side encryption used to encrypt the inventory results.

            • SSES3 (dict) --

              Specifies the use of SSE-S3 to encrypt delievered Inventory reports.

            • SSEKMS (dict) --

              Specifies the use of SSE-KMS to encrypt delievered Inventory reports.

              • KeyId (string) --

                Specifies the ID of the AWS Key Management Service (KMS) master encryption key to use for encrypting Inventory reports.

      • IsEnabled (boolean) --

        Specifies whether the inventory is enabled or disabled.

      • Filter (dict) --

        Specifies an inventory filter. The inventory only includes objects that meet the filter's criteria.

        • Prefix (string) --

          The prefix that an object must have to be included in the inventory results.

      • Id (string) --

        The ID used to identify the inventory configuration.

      • IncludedObjectVersions (string) --

        Specifies which object version(s) to included in the inventory results.

      • OptionalFields (list) --

        Contains the optional fields that are included in the inventory results.

        • (string) --
      • Schedule (dict) --

        Specifies the schedule for generating inventory results.

        • Frequency (string) --

          Specifies how frequently inventory results are produced.

get_bucket_lifecycle(**kwargs)

Deprecated, see the GetBucketLifecycleConfiguration operation.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_lifecycle(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'Rules': [
        {
            'Expiration': {
                'Date': datetime(2015, 1, 1),
                'Days': 123,
                'ExpiredObjectDeleteMarker': True|False
            },
            'ID': 'string',
            'Prefix': 'string',
            'Status': 'Enabled'|'Disabled',
            'Transition': {
                'Date': datetime(2015, 1, 1),
                'Days': 123,
                'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
            },
            'NoncurrentVersionTransition': {
                'NoncurrentDays': 123,
                'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
            },
            'NoncurrentVersionExpiration': {
                'NoncurrentDays': 123
            },
            'AbortIncompleteMultipartUpload': {
                'DaysAfterInitiation': 123
            }
        },
    ]
}

Response Structure

  • (dict) --
    • Rules (list) --
      • (dict) --
        • Expiration (dict) --
          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • ExpiredObjectDeleteMarker (boolean) --

            Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

        • ID (string) --

          Unique identifier for the rule. The value cannot be longer than 255 characters.

        • Prefix (string) --

          Prefix identifying one or more objects to which the rule applies.

        • Status (string) --

          If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

        • Transition (dict) --
          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • StorageClass (string) --

            The class of storage used to store the object.

        • NoncurrentVersionTransition (dict) --

          Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

          • StorageClass (string) --

            The class of storage used to store the object.

        • NoncurrentVersionExpiration (dict) --

          Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

        • AbortIncompleteMultipartUpload (dict) --

          Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

          • DaysAfterInitiation (integer) --

            Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

get_bucket_lifecycle_configuration(**kwargs)

Returns the lifecycle configuration information set on the bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_lifecycle_configuration(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'Rules': [
        {
            'Expiration': {
                'Date': datetime(2015, 1, 1),
                'Days': 123,
                'ExpiredObjectDeleteMarker': True|False
            },
            'ID': 'string',
            'Prefix': 'string',
            'Filter': {
                'Prefix': 'string',
                'Tag': {
                    'Key': 'string',
                    'Value': 'string'
                },
                'And': {
                    'Prefix': 'string',
                    'Tags': [
                        {
                            'Key': 'string',
                            'Value': 'string'
                        },
                    ]
                }
            },
            'Status': 'Enabled'|'Disabled',
            'Transitions': [
                {
                    'Date': datetime(2015, 1, 1),
                    'Days': 123,
                    'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                },
            ],
            'NoncurrentVersionTransitions': [
                {
                    'NoncurrentDays': 123,
                    'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                },
            ],
            'NoncurrentVersionExpiration': {
                'NoncurrentDays': 123
            },
            'AbortIncompleteMultipartUpload': {
                'DaysAfterInitiation': 123
            }
        },
    ]
}

Response Structure

  • (dict) --
    • Rules (list) --
      • (dict) --
        • Expiration (dict) --
          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • ExpiredObjectDeleteMarker (boolean) --

            Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

        • ID (string) --

          Unique identifier for the rule. The value cannot be longer than 255 characters.

        • Prefix (string) --

          Prefix identifying one or more objects to which the rule applies. This is deprecated; use Filter instead.

        • Filter (dict) --

          The Filter is used to identify objects that a Lifecycle Rule applies to. A Filter must have exactly one of Prefix, Tag, or And specified.

          • Prefix (string) --

            Prefix identifying one or more objects to which the rule applies.

          • Tag (dict) --

            This tag must exist in the object's tag set in order for the rule to apply.

            • Key (string) --

              Name of the tag.

            • Value (string) --

              Value of the tag.

          • And (dict) --

            This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates. The Lifecycle Rule will apply to any object matching all of the predicates configured inside the And operator.

            • Prefix (string) --
            • Tags (list) --

              All of these tags must exist in the object's tag set in order for the rule to apply.

              • (dict) --
                • Key (string) --

                  Name of the tag.

                • Value (string) --

                  Value of the tag.

        • Status (string) --

          If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

        • Transitions (list) --
          • (dict) --
            • Date (datetime) --

              Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

            • Days (integer) --

              Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

            • StorageClass (string) --

              The class of storage used to store the object.

        • NoncurrentVersionTransitions (list) --
          • (dict) --

            Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

            • NoncurrentDays (integer) --

              Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

            • StorageClass (string) --

              The class of storage used to store the object.

        • NoncurrentVersionExpiration (dict) --

          Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

        • AbortIncompleteMultipartUpload (dict) --

          Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

          • DaysAfterInitiation (integer) --

            Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

get_bucket_location(**kwargs)

Returns the region the bucket resides in.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_location(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'LocationConstraint': 'EU'|'eu-west-1'|'us-west-1'|'us-west-2'|'ap-south-1'|'ap-southeast-1'|'ap-southeast-2'|'ap-northeast-1'|'sa-east-1'|'cn-north-1'|'eu-central-1'
}

Response Structure

  • (dict) --
    • LocationConstraint (string) --
get_bucket_logging(**kwargs)

Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_logging(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'LoggingEnabled': {
        'TargetBucket': 'string',
        'TargetGrants': [
            {
                'Grantee': {
                    'DisplayName': 'string',
                    'EmailAddress': 'string',
                    'ID': 'string',
                    'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                    'URI': 'string'
                },
                'Permission': 'FULL_CONTROL'|'READ'|'WRITE'
            },
        ],
        'TargetPrefix': 'string'
    }
}

Response Structure

  • (dict) --
    • LoggingEnabled (dict) --

      Container for logging information. Presence of this element indicates that logging is enabled. Parameters TargetBucket and TargetPrefix are required in this case.

      • TargetBucket (string) --

        Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case you should choose a different TargetPrefix for each source bucket so that the delivered log files can be distinguished by key.

      • TargetGrants (list) --
        • (dict) --
          • Grantee (dict) --
            • DisplayName (string) --

              Screen name of the grantee.

            • EmailAddress (string) --

              Email address of the grantee.

            • ID (string) --

              The canonical user ID of the grantee.

            • Type (string) --

              Type of grantee

            • URI (string) --

              URI of the grantee group.

          • Permission (string) --

            Logging permissions assigned to the Grantee for the bucket.

      • TargetPrefix (string) --

        This element lets you specify a prefix for the keys that the log files will be stored under.

get_bucket_metrics_configuration(**kwargs)

Gets a metrics configuration (specified by the metrics configuration ID) from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_metrics_configuration(
    Bucket='string',
    Id='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket containing the metrics configuration to retrieve.

  • Id (string) --

    [REQUIRED]

    The ID used to identify the metrics configuration.

Return type

dict

Returns

Response Syntax

{
    'MetricsConfiguration': {
        'Id': 'string',
        'Filter': {
            'Prefix': 'string',
            'Tag': {
                'Key': 'string',
                'Value': 'string'
            },
            'And': {
                'Prefix': 'string',
                'Tags': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ]
            }
        }
    }
}

Response Structure

  • (dict) --

    • MetricsConfiguration (dict) --

      Specifies the metrics configuration.

      • Id (string) --

        The ID used to identify the metrics configuration.

      • Filter (dict) --

        Specifies a metrics configuration filter. The metrics configuration will only include objects that meet the filter's criteria. A filter must be a prefix, a tag, or a conjunction (MetricsAndOperator).

        • Prefix (string) --

          The prefix used when evaluating a metrics filter.

        • Tag (dict) --

          The tag used when evaluating a metrics filter.

          • Key (string) --

            Name of the tag.

          • Value (string) --

            Value of the tag.

        • And (dict) --

          A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.

          • Prefix (string) --

            The prefix used when evaluating an AND predicate.

          • Tags (list) --

            The list of tags used when evaluating an AND predicate.

            • (dict) --

              • Key (string) --

                Name of the tag.

              • Value (string) --

                Value of the tag.

get_bucket_notification(**kwargs)

Deprecated, see the GetBucketNotificationConfiguration operation.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_notification(
    Bucket='string'
)
Parameters
Bucket (string) --

[REQUIRED]

Name of the bucket to get the notification configuration for.

Return type
dict
Returns
Response Syntax
{
    'TopicConfiguration': {
        'Id': 'string',
        'Events': [
            's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
        ],
        'Event': 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
        'Topic': 'string'
    },
    'QueueConfiguration': {
        'Id': 'string',
        'Event': 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
        'Events': [
            's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
        ],
        'Queue': 'string'
    },
    'CloudFunctionConfiguration': {
        'Id': 'string',
        'Event': 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
        'Events': [
            's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
        ],
        'CloudFunction': 'string',
        'InvocationRole': 'string'
    }
}

Response Structure

  • (dict) --
    • TopicConfiguration (dict) --
      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • Events (list) --
        • (string) --

          Bucket event for which to send notifications.

      • Event (string) --

        Bucket event for which to send notifications.

      • Topic (string) --

        Amazon SNS topic to which Amazon S3 will publish a message to report the specified events for the bucket.

    • QueueConfiguration (dict) --
      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • Event (string) --

        Bucket event for which to send notifications.

      • Events (list) --
        • (string) --

          Bucket event for which to send notifications.

      • Queue (string) --
    • CloudFunctionConfiguration (dict) --
      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • Event (string) --

        Bucket event for which to send notifications.

      • Events (list) --
        • (string) --

          Bucket event for which to send notifications.

      • CloudFunction (string) --
      • InvocationRole (string) --
get_bucket_notification_configuration(**kwargs)

Returns the notification configuration of a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_notification_configuration(
    Bucket='string'
)
Parameters
Bucket (string) --

[REQUIRED]

Name of the bucket to get the notification configuration for.

Return type
dict
Returns
Response Syntax
{
    'TopicConfigurations': [
        {
            'Id': 'string',
            'TopicArn': 'string',
            'Events': [
                's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            ],
            'Filter': {
                'Key': {
                    'FilterRules': [
                        {
                            'Name': 'prefix'|'suffix',
                            'Value': 'string'
                        },
                    ]
                }
            }
        },
    ],
    'QueueConfigurations': [
        {
            'Id': 'string',
            'QueueArn': 'string',
            'Events': [
                's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            ],
            'Filter': {
                'Key': {
                    'FilterRules': [
                        {
                            'Name': 'prefix'|'suffix',
                            'Value': 'string'
                        },
                    ]
                }
            }
        },
    ],
    'LambdaFunctionConfigurations': [
        {
            'Id': 'string',
            'LambdaFunctionArn': 'string',
            'Events': [
                's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            ],
            'Filter': {
                'Key': {
                    'FilterRules': [
                        {
                            'Name': 'prefix'|'suffix',
                            'Value': 'string'
                        },
                    ]
                }
            }
        },
    ]
}

Response Structure

  • (dict) --

    Container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off on the bucket.

    • TopicConfigurations (list) --
      • (dict) --

        Container for specifying the configuration when you want Amazon S3 to publish events to an Amazon Simple Notification Service (Amazon SNS) topic.

        • Id (string) --

          Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

        • TopicArn (string) --

          Amazon SNS topic ARN to which Amazon S3 will publish a message when it detects events of specified type.

        • Events (list) --
          • (string) --

            Bucket event for which to send notifications.

        • Filter (dict) --

          Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

          • Key (dict) --

            Container for object key name prefix and suffix filtering rules.

            • FilterRules (list) --

              A list of containers for key value pair that defines the criteria for the filter rule.

              • (dict) --

                Container for key value pair that defines the criteria for the filter rule.

                • Name (string) --

                  Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

                • Value (string) --
    • QueueConfigurations (list) --
      • (dict) --

        Container for specifying an configuration when you want Amazon S3 to publish events to an Amazon Simple Queue Service (Amazon SQS) queue.

        • Id (string) --

          Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

        • QueueArn (string) --

          Amazon SQS queue ARN to which Amazon S3 will publish a message when it detects events of specified type.

        • Events (list) --
          • (string) --

            Bucket event for which to send notifications.

        • Filter (dict) --

          Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

          • Key (dict) --

            Container for object key name prefix and suffix filtering rules.

            • FilterRules (list) --

              A list of containers for key value pair that defines the criteria for the filter rule.

              • (dict) --

                Container for key value pair that defines the criteria for the filter rule.

                • Name (string) --

                  Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

                • Value (string) --
    • LambdaFunctionConfigurations (list) --
      • (dict) --

        Container for specifying the AWS Lambda notification configuration.

        • Id (string) --

          Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

        • LambdaFunctionArn (string) --

          Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.

        • Events (list) --
          • (string) --

            Bucket event for which to send notifications.

        • Filter (dict) --

          Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

          • Key (dict) --

            Container for object key name prefix and suffix filtering rules.

            • FilterRules (list) --

              A list of containers for key value pair that defines the criteria for the filter rule.

              • (dict) --

                Container for key value pair that defines the criteria for the filter rule.

                • Name (string) --

                  Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

                • Value (string) --
get_bucket_policy(**kwargs)

Returns the policy of a specified bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_policy(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'Policy': 'string'
}

Response Structure

  • (dict) --
    • Policy (string) --

      The bucket policy as a JSON document.

get_bucket_replication(**kwargs)

Returns the replication configuration of a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_replication(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'ReplicationConfiguration': {
        'Role': 'string',
        'Rules': [
            {
                'ID': 'string',
                'Prefix': 'string',
                'Status': 'Enabled'|'Disabled',
                'SourceSelectionCriteria': {
                    'SseKmsEncryptedObjects': {
                        'Status': 'Enabled'|'Disabled'
                    }
                },
                'Destination': {
                    'Bucket': 'string',
                    'Account': 'string',
                    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
                    'AccessControlTranslation': {
                        'Owner': 'Destination'
                    },
                    'EncryptionConfiguration': {
                        'ReplicaKmsKeyID': 'string'
                    }
                }
            },
        ]
    }
}

Response Structure

  • (dict) --
    • ReplicationConfiguration (dict) --

      Container for replication rules. You can add as many as 1,000 rules. Total replication configuration size can be up to 2 MB.

      • Role (string) --

        Amazon Resource Name (ARN) of an IAM role for Amazon S3 to assume when replicating the objects.

      • Rules (list) --

        Container for information about a particular replication rule. Replication configuration must have at least one rule and can contain up to 1,000 rules.

        • (dict) --

          Container for information about a particular replication rule.

          • ID (string) --

            Unique identifier for the rule. The value cannot be longer than 255 characters.

          • Prefix (string) --

            Object keyname prefix identifying one or more objects to which the rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes are not supported.

          • Status (string) --

            The rule is ignored if status is not Enabled.

          • SourceSelectionCriteria (dict) --

            Container for filters that define which source objects should be replicated.

            • SseKmsEncryptedObjects (dict) --

              Container for filter information of selection of KMS Encrypted S3 objects.

              • Status (string) --

                The replication for KMS encrypted S3 objects is disabled if status is not Enabled.

          • Destination (dict) --

            Container for replication destination information.

            • Bucket (string) --

              Amazon resource name (ARN) of the bucket where you want Amazon S3 to store replicas of the object identified by the rule.

            • Account (string) --

              Account ID of the destination bucket. Currently this is only being verified if Access Control Translation is enabled

            • StorageClass (string) --

              The class of storage used to store the object.

            • AccessControlTranslation (dict) --

              Container for information regarding the access control for replicas.

              • Owner (string) --

                The override value for the owner of the replica object.

            • EncryptionConfiguration (dict) --

              Container for information regarding encryption based configuration for replicas.

              • ReplicaKmsKeyID (string) --

                The id of the KMS key used to encrypt the replica object.

get_bucket_request_payment(**kwargs)

Returns the request payment configuration of a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_request_payment(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'Payer': 'Requester'|'BucketOwner'
}

Response Structure

  • (dict) --
    • Payer (string) --

      Specifies who pays for the download and request fees.

get_bucket_tagging(**kwargs)

Returns the tag set associated with the bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_tagging(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'TagSet': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • TagSet (list) --
      • (dict) --
        • Key (string) --

          Name of the tag.

        • Value (string) --

          Value of the tag.

get_bucket_versioning(**kwargs)

Returns the versioning state of a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_versioning(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'Status': 'Enabled'|'Suspended',
    'MFADelete': 'Enabled'|'Disabled'
}

Response Structure

  • (dict) --
    • Status (string) --

      The versioning state of the bucket.

    • MFADelete (string) --

      Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned.

get_bucket_website(**kwargs)

Returns the website configuration for a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_bucket_website(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Return type
dict
Returns
Response Syntax
{
    'RedirectAllRequestsTo': {
        'HostName': 'string',
        'Protocol': 'http'|'https'
    },
    'IndexDocument': {
        'Suffix': 'string'
    },
    'ErrorDocument': {
        'Key': 'string'
    },
    'RoutingRules': [
        {
            'Condition': {
                'HttpErrorCodeReturnedEquals': 'string',
                'KeyPrefixEquals': 'string'
            },
            'Redirect': {
                'HostName': 'string',
                'HttpRedirectCode': 'string',
                'Protocol': 'http'|'https',
                'ReplaceKeyPrefixWith': 'string',
                'ReplaceKeyWith': 'string'
            }
        },
    ]
}

Response Structure

  • (dict) --
    • RedirectAllRequestsTo (dict) --
      • HostName (string) --

        Name of the host where requests will be redirected.

      • Protocol (string) --

        Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

    • IndexDocument (dict) --
      • Suffix (string) --

        A suffix that is appended to a request that is for a directory on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character.

    • ErrorDocument (dict) --
      • Key (string) --

        The object key name to use when a 4XX class error occurs.

    • RoutingRules (list) --
      • (dict) --
        • Condition (dict) --

          A container for describing a condition that must be met for the specified redirect to apply. For example, 1. If request is for pages in the /docs folder, redirect to the /documents folder. 2. If request results in HTTP error 4xx, redirect request to another host where you might process the error.

          • HttpErrorCodeReturnedEquals (string) --

            The HTTP error code when the redirect is applied. In the event of an error, if the error code equals this value, then the specified redirect is applied. Required when parent element Condition is specified and sibling KeyPrefixEquals is not specified. If both are specified, then both must be true for the redirect to be applied.

          • KeyPrefixEquals (string) --

            The object key name prefix when the redirect is applied. For example, to redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. To redirect request for all pages with the prefix docs/, the key prefix will be /docs, which identifies all objects in the docs/ folder. Required when the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is not specified. If both conditions are specified, both must be true for the redirect to be applied.

        • Redirect (dict) --

          Container for redirect information. You can redirect requests to another host, to another page, or with another protocol. In the event of an error, you can can specify a different error code to return.

          • HostName (string) --

            The host name to use in the redirect request.

          • HttpRedirectCode (string) --

            The HTTP redirect code to use on the response. Not required if one of the siblings is present.

          • Protocol (string) --

            Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

          • ReplaceKeyPrefixWith (string) --

            The object key prefix to use in the redirect request. For example, to redirect requests for all pages with prefix docs/ (objects in the docs/ folder) to documents/, you can set a condition block with KeyPrefixEquals set to docs/ and in the Redirect set ReplaceKeyPrefixWith to /documents. Not required if one of the siblings is present. Can be present only if ReplaceKeyWith is not provided.

          • ReplaceKeyWith (string) --

            The specific object key to use in the redirect request. For example, redirect request to error.html. Not required if one of the sibling is present. Can be present only if ReplaceKeyPrefixWith is not provided.

get_object(**kwargs)

Retrieves objects from Amazon S3.

See also: AWS API Documentation

Request Syntax

response = client.get_object(
    Bucket='string',
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Key='string',
    Range='string',
    ResponseCacheControl='string',
    ResponseContentDisposition='string',
    ResponseContentEncoding='string',
    ResponseContentLanguage='string',
    ResponseContentType='string',
    ResponseExpires=datetime(2015, 1, 1),
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Key (string) -- [REQUIRED]
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • ResponseCacheControl (string) -- Sets the Cache-Control header of the response.
  • ResponseContentDisposition (string) -- Sets the Content-Disposition header of the response
  • ResponseContentEncoding (string) -- Sets the Content-Encoding header of the response.
  • ResponseContentLanguage (string) -- Sets the Content-Language header of the response.
  • ResponseContentType (string) -- Sets the Content-Type header of the response.
  • ResponseExpires (datetime) -- Sets the Expires header of the response.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' GET request for the part specified. Useful for downloading just a part of an object.
Return type

dict

Returns

Response Syntax

{
    'Body': StreamingBody(),
    'DeleteMarker': True|False,
    'AcceptRanges': 'string',
    'Expiration': 'string',
    'Restore': 'string',
    'LastModified': datetime(2015, 1, 1),
    'ContentLength': 123,
    'ETag': 'string',
    'MissingMeta': 123,
    'VersionId': 'string',
    'CacheControl': 'string',
    'ContentDisposition': 'string',
    'ContentEncoding': 'string',
    'ContentLanguage': 'string',
    'ContentRange': 'string',
    'ContentType': 'string',
    'Expires': datetime(2015, 1, 1),
    'WebsiteRedirectLocation': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'Metadata': {
        'string': 'string'
    },
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester',
    'ReplicationStatus': 'COMPLETE'|'PENDING'|'FAILED'|'REPLICA',
    'PartsCount': 123,
    'TagCount': 123
}

Response Structure

  • (dict) --

    • Body (StreamingBody) --

      Object data.

    • DeleteMarker (boolean) --

      Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.

    • AcceptRanges (string) --

    • Expiration (string) --

      If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.

    • Restore (string) --

      Provides information about object restoration operation and expiration time of the restored object copy.

    • LastModified (datetime) --

      Last modified date of the object

    • ContentLength (integer) --

      Size of the body in bytes.

    • ETag (string) --

      An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL

    • MissingMeta (integer) --

      This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.

    • VersionId (string) --

      Version of the object.

    • CacheControl (string) --

      Specifies caching behavior along the request/reply chain.

    • ContentDisposition (string) --

      Specifies presentational information for the object.

    • ContentEncoding (string) --

      Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.

    • ContentLanguage (string) --

      The language the content is in.

    • ContentRange (string) --

      The portion of the object returned in the response.

    • ContentType (string) --

      A standard MIME type describing the format of the object data.

    • Expires (datetime) --

      The date and time at which the object is no longer cacheable.

    • WebsiteRedirectLocation (string) --

      If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • Metadata (dict) --

      A map of metadata to store with the object in S3.

      • (string) --
        • (string) --
    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • StorageClass (string) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • ReplicationStatus (string) --

    • PartsCount (integer) --

      The count of parts this object has.

    • TagCount (integer) --

      The number of tags, if any, on the object.

get_object_acl(**kwargs)

Returns the access control list (ACL) of an object.

See also: AWS API Documentation

Request Syntax

response = client.get_object_acl(
    Bucket='string',
    Key='string',
    VersionId='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'Owner': {
        'DisplayName': 'string',
        'ID': 'string'
    },
    'Grants': [
        {
            'Grantee': {
                'DisplayName': 'string',
                'EmailAddress': 'string',
                'ID': 'string',
                'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                'URI': 'string'
            },
            'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
        },
    ],
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • Owner (dict) --

      • DisplayName (string) --
      • ID (string) --
    • Grants (list) --

      A list of grants.

      • (dict) --

        • Grantee (dict) --

          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) --

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Specifies the permission given to the grantee.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

get_object_tagging(**kwargs)

Returns the tag-set of an object.

See also: AWS API Documentation

Request Syntax

response = client.get_object_tagging(
    Bucket='string',
    Key='string',
    VersionId='string'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • VersionId (string) --
Return type

dict

Returns

Response Syntax

{
    'VersionId': 'string',
    'TagSet': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • VersionId (string) --

    • TagSet (list) --

      • (dict) --

        • Key (string) --

          Name of the tag.

        • Value (string) --

          Value of the tag.

get_object_torrent(**kwargs)

Return torrent files from a bucket.

See also: AWS API Documentation

Request Syntax

response = client.get_object_torrent(
    Bucket='string',
    Key='string',
    RequestPayer='requester'
)
Parameters
Return type

dict

Returns

Response Syntax

{
    'Body': StreamingBody(),
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • Body (StreamingBody) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

get_paginator(operation_name)

Create a paginator for an operation.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Raises OperationNotPageableError
Raised if the operation is not pageable. You can use the client.can_paginate method to check if an operation is pageable.
Return type
L{botocore.paginate.Paginator}
Returns
A paginator object.
get_waiter(waiter_name)

Returns an object that can wait for some condition.

Parameters
waiter_name (str) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
Returns
The specified waiter object.
Return type
botocore.waiter.Waiter
head_bucket(**kwargs)

This operation is useful to determine if a bucket exists and you have permission to access it.

See also: AWS API Documentation

Request Syntax

response = client.head_bucket(
    Bucket='string'
)
Parameters
Bucket (string) -- [REQUIRED]
Returns
None
head_object(**kwargs)

The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you're only interested in an object's metadata. To use HEAD, you must have READ access to the object.

See also: AWS API Documentation

Request Syntax

response = client.head_object(
    Bucket='string',
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Key='string',
    Range='string',
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Key (string) -- [REQUIRED]
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
Return type

dict

Returns

Response Syntax

{
    'DeleteMarker': True|False,
    'AcceptRanges': 'string',
    'Expiration': 'string',
    'Restore': 'string',
    'LastModified': datetime(2015, 1, 1),
    'ContentLength': 123,
    'ETag': 'string',
    'MissingMeta': 123,
    'VersionId': 'string',
    'CacheControl': 'string',
    'ContentDisposition': 'string',
    'ContentEncoding': 'string',
    'ContentLanguage': 'string',
    'ContentType': 'string',
    'Expires': datetime(2015, 1, 1),
    'WebsiteRedirectLocation': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'Metadata': {
        'string': 'string'
    },
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester',
    'ReplicationStatus': 'COMPLETE'|'PENDING'|'FAILED'|'REPLICA',
    'PartsCount': 123
}

Response Structure

  • (dict) --

    • DeleteMarker (boolean) --

      Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.

    • AcceptRanges (string) --

    • Expiration (string) --

      If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.

    • Restore (string) --

      Provides information about object restoration operation and expiration time of the restored object copy.

    • LastModified (datetime) --

      Last modified date of the object

    • ContentLength (integer) --

      Size of the body in bytes.

    • ETag (string) --

      An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL

    • MissingMeta (integer) --

      This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.

    • VersionId (string) --

      Version of the object.

    • CacheControl (string) --

      Specifies caching behavior along the request/reply chain.

    • ContentDisposition (string) --

      Specifies presentational information for the object.

    • ContentEncoding (string) --

      Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.

    • ContentLanguage (string) --

      The language the content is in.

    • ContentType (string) --

      A standard MIME type describing the format of the object data.

    • Expires (datetime) --

      The date and time at which the object is no longer cacheable.

    • WebsiteRedirectLocation (string) --

      If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • Metadata (dict) --

      A map of metadata to store with the object in S3.

      • (string) --
        • (string) --
    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • StorageClass (string) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • ReplicationStatus (string) --

    • PartsCount (integer) --

      The count of parts this object has.

list_bucket_analytics_configurations(**kwargs)

Lists the analytics configurations for the bucket.

See also: AWS API Documentation

Request Syntax

response = client.list_bucket_analytics_configurations(
    Bucket='string',
    ContinuationToken='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket from which analytics configurations are retrieved.

  • ContinuationToken (string) -- The ContinuationToken that represents a placeholder from where this request should begin.
Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'ContinuationToken': 'string',
    'NextContinuationToken': 'string',
    'AnalyticsConfigurationList': [
        {
            'Id': 'string',
            'Filter': {
                'Prefix': 'string',
                'Tag': {
                    'Key': 'string',
                    'Value': 'string'
                },
                'And': {
                    'Prefix': 'string',
                    'Tags': [
                        {
                            'Key': 'string',
                            'Value': 'string'
                        },
                    ]
                }
            },
            'StorageClassAnalysis': {
                'DataExport': {
                    'OutputSchemaVersion': 'V_1',
                    'Destination': {
                        'S3BucketDestination': {
                            'Format': 'CSV',
                            'BucketAccountId': 'string',
                            'Bucket': 'string',
                            'Prefix': 'string'
                        }
                    }
                }
            }
        },
    ]
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.

    • ContinuationToken (string) --

      The ContinuationToken that represents where this request began.

    • NextContinuationToken (string) --

      NextContinuationToken is sent when isTruncated is true, which indicates that there are more analytics configurations to list. The next request must include this NextContinuationToken. The token is obfuscated and is not a usable value.

    • AnalyticsConfigurationList (list) --

      The list of analytics configurations for a bucket.

      • (dict) --

        • Id (string) --

          The identifier used to represent an analytics configuration.

        • Filter (dict) --

          The filter used to describe a set of objects for analyses. A filter must have exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no filter is provided, all objects will be considered in any analysis.

          • Prefix (string) --

            The prefix to use when evaluating an analytics filter.

          • Tag (dict) --

            The tag to use when evaluating an analytics filter.

            • Key (string) --

              Name of the tag.

            • Value (string) --

              Value of the tag.

          • And (dict) --

            A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.

            • Prefix (string) --

              The prefix to use when evaluating an AND predicate.

            • Tags (list) --

              The list of tags to use when evaluating an AND predicate.

              • (dict) --

                • Key (string) --

                  Name of the tag.

                • Value (string) --

                  Value of the tag.

        • StorageClassAnalysis (dict) --

          If present, it indicates that data related to access patterns will be collected and made available to analyze the tradeoffs between different storage classes.

          • DataExport (dict) --

            A container used to describe how data related to the storage class analysis should be exported.

            • OutputSchemaVersion (string) --

              The version of the output schema to use when exporting data. Must be V_1.

            • Destination (dict) --

              The place to store the data for an analysis.

              • S3BucketDestination (dict) --

                A destination signifying output to an S3 bucket.

                • Format (string) --

                  The file format used when exporting data to Amazon S3.

                • BucketAccountId (string) --

                  The account ID that owns the destination bucket. If no account ID is provided, the owner will not be validated prior to exporting data.

                • Bucket (string) --

                  The Amazon resource name (ARN) of the bucket to which data is exported.

                • Prefix (string) --

                  The prefix to use when exporting data. The exported data begins with this prefix.

list_bucket_inventory_configurations(**kwargs)

Returns a list of inventory configurations for the bucket.

See also: AWS API Documentation

Request Syntax

response = client.list_bucket_inventory_configurations(
    Bucket='string',
    ContinuationToken='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket containing the inventory configurations to retrieve.

  • ContinuationToken (string) -- The marker used to continue an inventory configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.
Return type

dict

Returns

Response Syntax

{
    'ContinuationToken': 'string',
    'InventoryConfigurationList': [
        {
            'Destination': {
                'S3BucketDestination': {
                    'AccountId': 'string',
                    'Bucket': 'string',
                    'Format': 'CSV'|'ORC',
                    'Prefix': 'string',
                    'Encryption': {
                        'SSES3': {},
                        'SSEKMS': {
                            'KeyId': 'string'
                        }
                    }
                }
            },
            'IsEnabled': True|False,
            'Filter': {
                'Prefix': 'string'
            },
            'Id': 'string',
            'IncludedObjectVersions': 'All'|'Current',
            'OptionalFields': [
                'Size'|'LastModifiedDate'|'StorageClass'|'ETag'|'IsMultipartUploaded'|'ReplicationStatus'|'EncryptionStatus',
            ],
            'Schedule': {
                'Frequency': 'Daily'|'Weekly'
            }
        },
    ],
    'IsTruncated': True|False,
    'NextContinuationToken': 'string'
}

Response Structure

  • (dict) --

    • ContinuationToken (string) --

      If sent in the request, the marker that is used as a starting point for this inventory configuration list response.

    • InventoryConfigurationList (list) --

      The list of inventory configurations for a bucket.

      • (dict) --

        • Destination (dict) --

          Contains information about where to publish the inventory results.

          • S3BucketDestination (dict) --

            Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.

            • AccountId (string) --

              The ID of the account that owns the destination bucket.

            • Bucket (string) --

              The Amazon resource name (ARN) of the bucket where inventory results will be published.

            • Format (string) --

              Specifies the output format of the inventory results.

            • Prefix (string) --

              The prefix that is prepended to all inventory results.

            • Encryption (dict) --

              Contains the type of server-side encryption used to encrypt the inventory results.

              • SSES3 (dict) --

                Specifies the use of SSE-S3 to encrypt delievered Inventory reports.

              • SSEKMS (dict) --

                Specifies the use of SSE-KMS to encrypt delievered Inventory reports.

                • KeyId (string) --

                  Specifies the ID of the AWS Key Management Service (KMS) master encryption key to use for encrypting Inventory reports.

        • IsEnabled (boolean) --

          Specifies whether the inventory is enabled or disabled.

        • Filter (dict) --

          Specifies an inventory filter. The inventory only includes objects that meet the filter's criteria.

          • Prefix (string) --

            The prefix that an object must have to be included in the inventory results.

        • Id (string) --

          The ID used to identify the inventory configuration.

        • IncludedObjectVersions (string) --

          Specifies which object version(s) to included in the inventory results.

        • OptionalFields (list) --

          Contains the optional fields that are included in the inventory results.

          • (string) --
        • Schedule (dict) --

          Specifies the schedule for generating inventory results.

          • Frequency (string) --

            Specifies how frequently inventory results are produced.

    • IsTruncated (boolean) --

      Indicates whether the returned list of inventory configurations is truncated in this response. A value of true indicates that the list is truncated.

    • NextContinuationToken (string) --

      The marker used to continue this inventory configuration listing. Use the NextContinuationToken from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.

list_bucket_metrics_configurations(**kwargs)

Lists the metrics configurations for the bucket.

See also: AWS API Documentation

Request Syntax

response = client.list_bucket_metrics_configurations(
    Bucket='string',
    ContinuationToken='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket containing the metrics configurations to retrieve.

  • ContinuationToken (string) -- The marker that is used to continue a metrics configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.
Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'ContinuationToken': 'string',
    'NextContinuationToken': 'string',
    'MetricsConfigurationList': [
        {
            'Id': 'string',
            'Filter': {
                'Prefix': 'string',
                'Tag': {
                    'Key': 'string',
                    'Value': 'string'
                },
                'And': {
                    'Prefix': 'string',
                    'Tags': [
                        {
                            'Key': 'string',
                            'Value': 'string'
                        },
                    ]
                }
            }
        },
    ]
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      Indicates whether the returned list of metrics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.

    • ContinuationToken (string) --

      The marker that is used as a starting point for this metrics configuration list response. This value is present if it was sent in the request.

    • NextContinuationToken (string) --

      The marker used to continue a metrics configuration listing that has been truncated. Use the NextContinuationToken from a previously truncated list response to continue the listing. The continuation token is an opaque value that Amazon S3 understands.

    • MetricsConfigurationList (list) --

      The list of metrics configurations for a bucket.

      • (dict) --

        • Id (string) --

          The ID used to identify the metrics configuration.

        • Filter (dict) --

          Specifies a metrics configuration filter. The metrics configuration will only include objects that meet the filter's criteria. A filter must be a prefix, a tag, or a conjunction (MetricsAndOperator).

          • Prefix (string) --

            The prefix used when evaluating a metrics filter.

          • Tag (dict) --

            The tag used when evaluating a metrics filter.

            • Key (string) --

              Name of the tag.

            • Value (string) --

              Value of the tag.

          • And (dict) --

            A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.

            • Prefix (string) --

              The prefix used when evaluating an AND predicate.

            • Tags (list) --

              The list of tags used when evaluating an AND predicate.

              • (dict) --

                • Key (string) --

                  Name of the tag.

                • Value (string) --

                  Value of the tag.

list_buckets()

Returns a list of all buckets owned by the authenticated sender of the request.

See also: AWS API Documentation

Request Syntax

response = client.list_buckets()
Return type
dict
Returns
Response Syntax
{
    'Buckets': [
        {
            'Name': 'string',
            'CreationDate': datetime(2015, 1, 1)
        },
    ],
    'Owner': {
        'DisplayName': 'string',
        'ID': 'string'
    }
}

Response Structure

  • (dict) --
    • Buckets (list) --
      • (dict) --
        • Name (string) --

          The name of the bucket.

        • CreationDate (datetime) --

          Date the bucket was created.

    • Owner (dict) --
      • DisplayName (string) --
      • ID (string) --
list_multipart_uploads(**kwargs)

This operation lists in-progress multipart uploads.

See also: AWS API Documentation

Request Syntax

response = client.list_multipart_uploads(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    KeyMarker='string',
    MaxUploads=123,
    Prefix='string',
    UploadIdMarker='string'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Delimiter (string) -- Character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • KeyMarker (string) -- Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.
  • MaxUploads (integer) -- Sets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response.
  • Prefix (string) -- Lists in-progress uploads only for those keys that begin with the specified prefix.
  • UploadIdMarker (string) -- Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored.
Return type

dict

Returns

Response Syntax

{
    'Bucket': 'string',
    'KeyMarker': 'string',
    'UploadIdMarker': 'string',
    'NextKeyMarker': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'NextUploadIdMarker': 'string',
    'MaxUploads': 123,
    'IsTruncated': True|False,
    'Uploads': [
        {
            'UploadId': 'string',
            'Key': 'string',
            'Initiated': datetime(2015, 1, 1),
            'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            },
            'Initiator': {
                'ID': 'string',
                'DisplayName': 'string'
            }
        },
    ],
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url'
}

Response Structure

  • (dict) --

    • Bucket (string) --

      Name of the bucket to which the multipart upload was initiated.

    • KeyMarker (string) --

      The key at or after which the listing began.

    • UploadIdMarker (string) --

      Upload ID after which listing began.

    • NextKeyMarker (string) --

      When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.

    • Prefix (string) --

      When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.

    • Delimiter (string) --

    • NextUploadIdMarker (string) --

      When a list is truncated, this element specifies the value that should be used for the upload-id-marker request parameter in a subsequent request.

    • MaxUploads (integer) --

      Maximum number of multipart uploads that could have been included in the response.

    • IsTruncated (boolean) --

      Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.

    • Uploads (list) --

      • (dict) --

        • UploadId (string) --

          Upload ID that identifies the multipart upload.

        • Key (string) --

          Key of the object for which the multipart upload was initiated.

        • Initiated (datetime) --

          Date and time at which the multipart upload was initiated.

        • StorageClass (string) --

          The class of storage used to store the object.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
        • Initiator (dict) --

          Identifies who initiated the multipart upload.

          • ID (string) --

            If the principal is an AWS account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.

          • DisplayName (string) --

            Name of the Principal.

    • CommonPrefixes (list) --

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

list_object_versions(**kwargs)

Returns metadata about all of the versions of objects in a bucket.

See also: AWS API Documentation

Request Syntax

response = client.list_object_versions(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    KeyMarker='string',
    MaxKeys=123,
    Prefix='string',
    VersionIdMarker='string'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • KeyMarker (string) -- Specifies the key to start with when listing objects in a bucket.
  • MaxKeys (integer) -- Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • VersionIdMarker (string) -- Specifies the object version you want to start listing from.
Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'KeyMarker': 'string',
    'VersionIdMarker': 'string',
    'NextKeyMarker': 'string',
    'NextVersionIdMarker': 'string',
    'Versions': [
        {
            'ETag': 'string',
            'Size': 123,
            'StorageClass': 'STANDARD',
            'Key': 'string',
            'VersionId': 'string',
            'IsLatest': True|False,
            'LastModified': datetime(2015, 1, 1),
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            }
        },
    ],
    'DeleteMarkers': [
        {
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            },
            'Key': 'string',
            'VersionId': 'string',
            'IsLatest': True|False,
            'LastModified': datetime(2015, 1, 1)
        },
    ],
    'Name': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'MaxKeys': 123,
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url'
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria. If your results were truncated, you can make a follow-up paginated request using the NextKeyMarker and NextVersionIdMarker response parameters as a starting place in another request to return the rest of the results.

    • KeyMarker (string) --

      Marks the last Key returned in a truncated response.

    • VersionIdMarker (string) --

    • NextKeyMarker (string) --

      Use this value for the key marker request parameter in a subsequent request.

    • NextVersionIdMarker (string) --

      Use this value for the next version id marker parameter in a subsequent request.

    • Versions (list) --

      • (dict) --

        • ETag (string) --

        • Size (integer) --

          Size in bytes of the object.

        • StorageClass (string) --

          The class of storage used to store the object.

        • Key (string) --

          The object key.

        • VersionId (string) --

          Version ID of an object.

        • IsLatest (boolean) --

          Specifies whether the object is (true) or is not (false) the latest version of an object.

        • LastModified (datetime) --

          Date and time the object was last modified.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
    • DeleteMarkers (list) --

      • (dict) --

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
        • Key (string) --

          The object key.

        • VersionId (string) --

          Version ID of an object.

        • IsLatest (boolean) --

          Specifies whether the object is (true) or is not (false) the latest version of an object.

        • LastModified (datetime) --

          Date and time the object was last modified.

    • Name (string) --

    • Prefix (string) --

    • Delimiter (string) --

    • MaxKeys (integer) --

    • CommonPrefixes (list) --

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

list_objects(**kwargs)

Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket.

See also: AWS API Documentation

Request Syntax

response = client.list_objects(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    Marker='string',
    MaxKeys=123,
    Prefix='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • Marker (string) -- Specifies the key to start with when listing objects in a bucket.
  • MaxKeys (integer) -- Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the list objects request. Bucket owners need not specify this parameter in their requests.
Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'Marker': 'string',
    'NextMarker': 'string',
    'Contents': [
        {
            'Key': 'string',
            'LastModified': datetime(2015, 1, 1),
            'ETag': 'string',
            'Size': 123,
            'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'GLACIER'|'STANDARD_IA'|'ONEZONE_IA',
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            }
        },
    ],
    'Name': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'MaxKeys': 123,
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url'
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.

    • Marker (string) --

    • NextMarker (string) --

      When response is truncated (the IsTruncated element value in the response is true), you can use the key name in this field as marker in the subsequent request to get next set of objects. Amazon S3 lists objects in alphabetical order Note: This element is returned only if you have delimiter request parameter specified. If response does not include the NextMaker and it is truncated, you can use the value of the last Key in the response as the marker in the subsequent request to get the next set of object keys.

    • Contents (list) --

      • (dict) --

        • Key (string) --

        • LastModified (datetime) --

        • ETag (string) --

        • Size (integer) --

        • StorageClass (string) --

          The class of storage used to store the object.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
    • Name (string) --

    • Prefix (string) --

    • Delimiter (string) --

    • MaxKeys (integer) --

    • CommonPrefixes (list) --

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

list_objects_v2(**kwargs)

Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket. Note: ListObjectsV2 is the revised List Objects API and we recommend you use this revised API for new application development.

See also: AWS API Documentation

Request Syntax

response = client.list_objects_v2(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    MaxKeys=123,
    Prefix='string',
    ContinuationToken='string',
    FetchOwner=True|False,
    StartAfter='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    Name of the bucket to list.

  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Encoding type used by Amazon S3 to encode object keys in the response.
  • MaxKeys (integer) -- Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • ContinuationToken (string) -- ContinuationToken indicates Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key
  • FetchOwner (boolean) -- The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true
  • StartAfter (string) -- StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. StartAfter can be any key in the bucket
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the list objects request in V2 style. Bucket owners need not specify this parameter in their requests.
Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'Contents': [
        {
            'Key': 'string',
            'LastModified': datetime(2015, 1, 1),
            'ETag': 'string',
            'Size': 123,
            'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'GLACIER'|'STANDARD_IA'|'ONEZONE_IA',
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            }
        },
    ],
    'Name': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'MaxKeys': 123,
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url',
    'KeyCount': 123,
    'ContinuationToken': 'string',
    'NextContinuationToken': 'string',
    'StartAfter': 'string'
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.

    • Contents (list) --

      Metadata about each object returned.

      • (dict) --

        • Key (string) --

        • LastModified (datetime) --

        • ETag (string) --

        • Size (integer) --

        • StorageClass (string) --

          The class of storage used to store the object.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
    • Name (string) --

      Name of the bucket to list.

    • Prefix (string) --

      Limits the response to keys that begin with the specified prefix.

    • Delimiter (string) --

      A delimiter is a character you use to group keys.

    • MaxKeys (integer) --

      Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.

    • CommonPrefixes (list) --

      CommonPrefixes contains all (if there are any) keys between Prefix and the next occurrence of the string specified by delimiter

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

    • KeyCount (integer) --

      KeyCount is the number of keys returned with this request. KeyCount will always be less than equals to MaxKeys field. Say you ask for 50 keys, your result will include less than equals 50 keys

    • ContinuationToken (string) --

      ContinuationToken indicates Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key

    • NextContinuationToken (string) --

      NextContinuationToken is sent when isTruncated is true which means there are more keys in the bucket that can be listed. The next list requests to Amazon S3 can be continued with this NextContinuationToken. NextContinuationToken is obfuscated and is not a real key

    • StartAfter (string) --

      StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. StartAfter can be any key in the bucket

list_parts(**kwargs)

Lists the parts that have been uploaded for a specific multipart upload.

See also: AWS API Documentation

Request Syntax

response = client.list_parts(
    Bucket='string',
    Key='string',
    MaxParts=123,
    PartNumberMarker=123,
    UploadId='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • MaxParts (integer) -- Sets the maximum number of parts to return.
  • PartNumberMarker (integer) -- Specifies the part after which listing should begin. Only parts with higher part numbers will be listed.
  • UploadId (string) --

    [REQUIRED]

    Upload ID identifying the multipart upload whose parts are being listed.

  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'AbortDate': datetime(2015, 1, 1),
    'AbortRuleId': 'string',
    'Bucket': 'string',
    'Key': 'string',
    'UploadId': 'string',
    'PartNumberMarker': 123,
    'NextPartNumberMarker': 123,
    'MaxParts': 123,
    'IsTruncated': True|False,
    'Parts': [
        {
            'PartNumber': 123,
            'LastModified': datetime(2015, 1, 1),
            'ETag': 'string',
            'Size': 123
        },
    ],
    'Initiator': {
        'ID': 'string',
        'DisplayName': 'string'
    },
    'Owner': {
        'DisplayName': 'string',
        'ID': 'string'
    },
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • AbortDate (datetime) --

      Date when multipart upload will become eligible for abort operation by lifecycle.

    • AbortRuleId (string) --

      Id of the lifecycle rule that makes a multipart upload eligible for abort operation.

    • Bucket (string) --

      Name of the bucket to which the multipart upload was initiated.

    • Key (string) --

      Object key for which the multipart upload was initiated.

    • UploadId (string) --

      Upload ID identifying the multipart upload whose parts are being listed.

    • PartNumberMarker (integer) --

      Part number after which listing begins.

    • NextPartNumberMarker (integer) --

      When a list is truncated, this element specifies the last part in the list, as well as the value to use for the part-number-marker request parameter in a subsequent request.

    • MaxParts (integer) --

      Maximum number of parts that were allowed in the response.

    • IsTruncated (boolean) --

      Indicates whether the returned list of parts is truncated.

    • Parts (list) --

      • (dict) --

        • PartNumber (integer) --

          Part number identifying the part. This is a positive integer between 1 and 10,000.

        • LastModified (datetime) --

          Date and time at which the part was uploaded.

        • ETag (string) --

          Entity tag returned when the part was uploaded.

        • Size (integer) --

          Size of the uploaded part data.

    • Initiator (dict) --

      Identifies who initiated the multipart upload.

      • ID (string) --

        If the principal is an AWS account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.

      • DisplayName (string) --

        Name of the Principal.

    • Owner (dict) --

      • DisplayName (string) --
      • ID (string) --
    • StorageClass (string) --

      The class of storage used to store the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

put_bucket_accelerate_configuration(**kwargs)

Sets the accelerate configuration of an existing bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_accelerate_configuration(
    Bucket='string',
    AccelerateConfiguration={
        'Status': 'Enabled'|'Suspended'
    }
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    Name of the bucket for which the accelerate configuration is set.

  • AccelerateConfiguration (dict) --

    [REQUIRED]

    Specifies the Accelerate Configuration you want to set for the bucket.

    • Status (string) --

      The accelerate configuration of the bucket.

Returns

None

put_bucket_acl(**kwargs)

Sets the permissions on a bucket using access control lists (ACL).

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_acl(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read',
    AccessControlPolicy={
        'Grants': [
            {
                'Grantee': {
                    'DisplayName': 'string',
                    'EmailAddress': 'string',
                    'ID': 'string',
                    'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                    'URI': 'string'
                },
                'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
            },
        ],
        'Owner': {
            'DisplayName': 'string',
            'ID': 'string'
        }
    },
    Bucket='string',
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWrite='string',
    GrantWriteACP='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the bucket.
  • AccessControlPolicy (dict) --
    • Grants (list) --

      A list of grants.

      • (dict) --
        • Grantee (dict) --
          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) -- [REQUIRED]

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Specifies the permission given to the grantee.

    • Owner (dict) --
      • DisplayName (string) --
      • ID (string) --
  • Bucket (string) -- [REQUIRED]
  • GrantFullControl (string) -- Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
  • GrantRead (string) -- Allows grantee to list the objects in the bucket.
  • GrantReadACP (string) -- Allows grantee to read the bucket ACL.
  • GrantWrite (string) -- Allows grantee to create, overwrite, and delete any object in the bucket.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable bucket.
Returns

None

put_bucket_analytics_configuration(**kwargs)

Sets an analytics configuration for the bucket (specified by the analytics configuration ID).

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_analytics_configuration(
    Bucket='string',
    Id='string',
    AnalyticsConfiguration={
        'Id': 'string',
        'Filter': {
            'Prefix': 'string',
            'Tag': {
                'Key': 'string',
                'Value': 'string'
            },
            'And': {
                'Prefix': 'string',
                'Tags': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ]
            }
        },
        'StorageClassAnalysis': {
            'DataExport': {
                'OutputSchemaVersion': 'V_1',
                'Destination': {
                    'S3BucketDestination': {
                        'Format': 'CSV',
                        'BucketAccountId': 'string',
                        'Bucket': 'string',
                        'Prefix': 'string'
                    }
                }
            }
        }
    }
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket to which an analytics configuration is stored.

  • Id (string) --

    [REQUIRED]

    The identifier used to represent an analytics configuration.

  • AnalyticsConfiguration (dict) --

    [REQUIRED]

    The configuration and any analyses for the analytics filter.

    • Id (string) -- [REQUIRED]

      The identifier used to represent an analytics configuration.

    • Filter (dict) --

      The filter used to describe a set of objects for analyses. A filter must have exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no filter is provided, all objects will be considered in any analysis.

      • Prefix (string) --

        The prefix to use when evaluating an analytics filter.

      • Tag (dict) --

        The tag to use when evaluating an analytics filter.

        • Key (string) -- [REQUIRED]

          Name of the tag.

        • Value (string) -- [REQUIRED]

          Value of the tag.

      • And (dict) --

        A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.

        • Prefix (string) --

          The prefix to use when evaluating an AND predicate.

        • Tags (list) --

          The list of tags to use when evaluating an AND predicate.

          • (dict) --
            • Key (string) -- [REQUIRED]

              Name of the tag.

            • Value (string) -- [REQUIRED]

              Value of the tag.

    • StorageClassAnalysis (dict) -- [REQUIRED]

      If present, it indicates that data related to access patterns will be collected and made available to analyze the tradeoffs between different storage classes.

      • DataExport (dict) --

        A container used to describe how data related to the storage class analysis should be exported.

        • OutputSchemaVersion (string) -- [REQUIRED]

          The version of the output schema to use when exporting data. Must be V_1.

        • Destination (dict) -- [REQUIRED]

          The place to store the data for an analysis.

          • S3BucketDestination (dict) -- [REQUIRED]

            A destination signifying output to an S3 bucket.

            • Format (string) -- [REQUIRED]

              The file format used when exporting data to Amazon S3.

            • BucketAccountId (string) --

              The account ID that owns the destination bucket. If no account ID is provided, the owner will not be validated prior to exporting data.

            • Bucket (string) -- [REQUIRED]

              The Amazon resource name (ARN) of the bucket to which data is exported.

            • Prefix (string) --

              The prefix to use when exporting data. The exported data begins with this prefix.

Returns

None

put_bucket_cors(**kwargs)

Sets the cors configuration for a bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_cors(
    Bucket='string',
    CORSConfiguration={
        'CORSRules': [
            {
                'AllowedHeaders': [
                    'string',
                ],
                'AllowedMethods': [
                    'string',
                ],
                'AllowedOrigins': [
                    'string',
                ],
                'ExposeHeaders': [
                    'string',
                ],
                'MaxAgeSeconds': 123
            },
        ]
    },

)
Parameters
  • Bucket (string) -- [REQUIRED]
  • CORSConfiguration (dict) --

    [REQUIRED]

    • CORSRules (list) -- [REQUIRED]
      • (dict) --
        • AllowedHeaders (list) --

          Specifies which headers are allowed in a pre-flight OPTIONS request.

          • (string) --
        • AllowedMethods (list) -- [REQUIRED]

          Identifies HTTP methods that the domain/origin specified in the rule is allowed to execute.

          • (string) --
        • AllowedOrigins (list) -- [REQUIRED]

          One or more origins you want customers to be able to access the bucket from.

          • (string) --
        • ExposeHeaders (list) --

          One or more headers in the response that you want customers to be able to access from their applications (for example, from a JavaScript XMLHttpRequest object).

          • (string) --
        • MaxAgeSeconds (integer) --

          The time in seconds that your browser is to cache the preflight response for the specified resource.

Returns

None

put_bucket_encryption(**kwargs)

Creates a new server-side encryption configuration (or replaces an existing one, if present).

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_encryption(
    Bucket='string',
    ContentMD5='string',
    ServerSideEncryptionConfiguration={
        'Rules': [
            {
                'ApplyServerSideEncryptionByDefault': {
                    'SSEAlgorithm': 'AES256'|'aws:kms',
                    'KMSMasterKeyID': 'string'
                }
            },
        ]
    }
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket for which the server-side encryption configuration is set.

  • ContentMD5 (string) -- The base64-encoded 128-bit MD5 digest of the server-side encryption configuration.
  • ServerSideEncryptionConfiguration (dict) --

    [REQUIRED]

    Container for server-side encryption configuration rules. Currently S3 supports one rule only.

    • Rules (list) -- [REQUIRED]

      Container for information about a particular server-side encryption configuration rule.

      • (dict) --

        Container for information about a particular server-side encryption configuration rule.

        • ApplyServerSideEncryptionByDefault (dict) --

          Describes the default server-side encryption to apply to new objects in the bucket. If Put Object request does not specify any server-side encryption, this default encryption will be applied.

          • SSEAlgorithm (string) -- [REQUIRED]

            Server-side encryption algorithm to use for the default encryption.

          • KMSMasterKeyID (string) --

            KMS master key ID to use for the default encryption. This parameter is allowed if SSEAlgorithm is aws:kms.

Returns

None

put_bucket_inventory_configuration(**kwargs)

Adds an inventory configuration (identified by the inventory ID) from the bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_inventory_configuration(
    Bucket='string',
    Id='string',
    InventoryConfiguration={
        'Destination': {
            'S3BucketDestination': {
                'AccountId': 'string',
                'Bucket': 'string',
                'Format': 'CSV'|'ORC',
                'Prefix': 'string',
                'Encryption': {
                    'SSES3': {}
                    ,
                    'SSEKMS': {
                        'KeyId': 'string'
                    }
                }
            }
        },
        'IsEnabled': True|False,
        'Filter': {
            'Prefix': 'string'
        },
        'Id': 'string',
        'IncludedObjectVersions': 'All'|'Current',
        'OptionalFields': [
            'Size'|'LastModifiedDate'|'StorageClass'|'ETag'|'IsMultipartUploaded'|'ReplicationStatus'|'EncryptionStatus',
        ],
        'Schedule': {
            'Frequency': 'Daily'|'Weekly'
        }
    }
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket where the inventory configuration will be stored.

  • Id (string) --

    [REQUIRED]

    The ID used to identify the inventory configuration.

  • InventoryConfiguration (dict) --

    [REQUIRED]

    Specifies the inventory configuration.

    • Destination (dict) -- [REQUIRED]

      Contains information about where to publish the inventory results.

      • S3BucketDestination (dict) -- [REQUIRED]

        Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.

        • AccountId (string) --

          The ID of the account that owns the destination bucket.

        • Bucket (string) -- [REQUIRED]

          The Amazon resource name (ARN) of the bucket where inventory results will be published.

        • Format (string) -- [REQUIRED]

          Specifies the output format of the inventory results.

        • Prefix (string) --

          The prefix that is prepended to all inventory results.

        • Encryption (dict) --

          Contains the type of server-side encryption used to encrypt the inventory results.

          • SSES3 (dict) --

            Specifies the use of SSE-S3 to encrypt delievered Inventory reports.

          • SSEKMS (dict) --

            Specifies the use of SSE-KMS to encrypt delievered Inventory reports.

            • KeyId (string) -- [REQUIRED]

              Specifies the ID of the AWS Key Management Service (KMS) master encryption key to use for encrypting Inventory reports.

    • IsEnabled (boolean) -- [REQUIRED]

      Specifies whether the inventory is enabled or disabled.

    • Filter (dict) --

      Specifies an inventory filter. The inventory only includes objects that meet the filter's criteria.

      • Prefix (string) -- [REQUIRED]

        The prefix that an object must have to be included in the inventory results.

    • Id (string) -- [REQUIRED]

      The ID used to identify the inventory configuration.

    • IncludedObjectVersions (string) -- [REQUIRED]

      Specifies which object version(s) to included in the inventory results.

    • OptionalFields (list) --

      Contains the optional fields that are included in the inventory results.

      • (string) --
    • Schedule (dict) -- [REQUIRED]

      Specifies the schedule for generating inventory results.

      • Frequency (string) -- [REQUIRED]

        Specifies how frequently inventory results are produced.

Returns

None

put_bucket_lifecycle(**kwargs)

Deprecated, see the PutBucketLifecycleConfiguration operation.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_lifecycle(
    Bucket='string',
    LifecycleConfiguration={
        'Rules': [
            {
                'Expiration': {
                    'Date': datetime(2015, 1, 1),
                    'Days': 123,
                    'ExpiredObjectDeleteMarker': True|False
                },
                'ID': 'string',
                'Prefix': 'string',
                'Status': 'Enabled'|'Disabled',
                'Transition': {
                    'Date': datetime(2015, 1, 1),
                    'Days': 123,
                    'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                },
                'NoncurrentVersionTransition': {
                    'NoncurrentDays': 123,
                    'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                },
                'NoncurrentVersionExpiration': {
                    'NoncurrentDays': 123
                },
                'AbortIncompleteMultipartUpload': {
                    'DaysAfterInitiation': 123
                }
            },
        ]
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • LifecycleConfiguration (dict) --
    • Rules (list) -- [REQUIRED]
      • (dict) --
        • Expiration (dict) --
          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • ExpiredObjectDeleteMarker (boolean) --

            Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

        • ID (string) --

          Unique identifier for the rule. The value cannot be longer than 255 characters.

        • Prefix (string) -- [REQUIRED]

          Prefix identifying one or more objects to which the rule applies.

        • Status (string) -- [REQUIRED]

          If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

        • Transition (dict) --
          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • StorageClass (string) --

            The class of storage used to store the object.

        • NoncurrentVersionTransition (dict) --

          Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

          • StorageClass (string) --

            The class of storage used to store the object.

        • NoncurrentVersionExpiration (dict) --

          Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

        • AbortIncompleteMultipartUpload (dict) --

          Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

          • DaysAfterInitiation (integer) --

            Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

Returns

None

put_bucket_lifecycle_configuration(**kwargs)

Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_lifecycle_configuration(
    Bucket='string',
    LifecycleConfiguration={
        'Rules': [
            {
                'Expiration': {
                    'Date': datetime(2015, 1, 1),
                    'Days': 123,
                    'ExpiredObjectDeleteMarker': True|False
                },
                'ID': 'string',
                'Prefix': 'string',
                'Filter': {
                    'Prefix': 'string',
                    'Tag': {
                        'Key': 'string',
                        'Value': 'string'
                    },
                    'And': {
                        'Prefix': 'string',
                        'Tags': [
                            {
                                'Key': 'string',
                                'Value': 'string'
                            },
                        ]
                    }
                },
                'Status': 'Enabled'|'Disabled',
                'Transitions': [
                    {
                        'Date': datetime(2015, 1, 1),
                        'Days': 123,
                        'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                    },
                ],
                'NoncurrentVersionTransitions': [
                    {
                        'NoncurrentDays': 123,
                        'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                    },
                ],
                'NoncurrentVersionExpiration': {
                    'NoncurrentDays': 123
                },
                'AbortIncompleteMultipartUpload': {
                    'DaysAfterInitiation': 123
                }
            },
        ]
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • LifecycleConfiguration (dict) --
    • Rules (list) -- [REQUIRED]
      • (dict) --
        • Expiration (dict) --
          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • ExpiredObjectDeleteMarker (boolean) --

            Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

        • ID (string) --

          Unique identifier for the rule. The value cannot be longer than 255 characters.

        • Prefix (string) --

          Prefix identifying one or more objects to which the rule applies. This is deprecated; use Filter instead.

        • Filter (dict) --

          The Filter is used to identify objects that a Lifecycle Rule applies to. A Filter must have exactly one of Prefix, Tag, or And specified.

          • Prefix (string) --

            Prefix identifying one or more objects to which the rule applies.

          • Tag (dict) --

            This tag must exist in the object's tag set in order for the rule to apply.

            • Key (string) -- [REQUIRED]

              Name of the tag.

            • Value (string) -- [REQUIRED]

              Value of the tag.

          • And (dict) --

            This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates. The Lifecycle Rule will apply to any object matching all of the predicates configured inside the And operator.

            • Prefix (string) --
            • Tags (list) --

              All of these tags must exist in the object's tag set in order for the rule to apply.

              • (dict) --
                • Key (string) -- [REQUIRED]

                  Name of the tag.

                • Value (string) -- [REQUIRED]

                  Value of the tag.

        • Status (string) -- [REQUIRED]

          If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

        • Transitions (list) --
          • (dict) --
            • Date (datetime) --

              Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

            • Days (integer) --

              Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

            • StorageClass (string) --

              The class of storage used to store the object.

        • NoncurrentVersionTransitions (list) --
          • (dict) --

            Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

            • NoncurrentDays (integer) --

              Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

            • StorageClass (string) --

              The class of storage used to store the object.

        • NoncurrentVersionExpiration (dict) --

          Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

        • AbortIncompleteMultipartUpload (dict) --

          Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

          • DaysAfterInitiation (integer) --

            Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

Returns

None

put_bucket_logging(**kwargs)

Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_logging(
    Bucket='string',
    BucketLoggingStatus={
        'LoggingEnabled': {
            'TargetBucket': 'string',
            'TargetGrants': [
                {
                    'Grantee': {
                        'DisplayName': 'string',
                        'EmailAddress': 'string',
                        'ID': 'string',
                        'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                        'URI': 'string'
                    },
                    'Permission': 'FULL_CONTROL'|'READ'|'WRITE'
                },
            ],
            'TargetPrefix': 'string'
        }
    },

)
Parameters
  • Bucket (string) -- [REQUIRED]
  • BucketLoggingStatus (dict) --

    [REQUIRED]

    • LoggingEnabled (dict) --

      Container for logging information. Presence of this element indicates that logging is enabled. Parameters TargetBucket and TargetPrefix are required in this case.

      • TargetBucket (string) -- [REQUIRED]

        Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case you should choose a different TargetPrefix for each source bucket so that the delivered log files can be distinguished by key.

      • TargetGrants (list) --
        • (dict) --
          • Grantee (dict) --
            • DisplayName (string) --

              Screen name of the grantee.

            • EmailAddress (string) --

              Email address of the grantee.

            • ID (string) --

              The canonical user ID of the grantee.

            • Type (string) -- [REQUIRED]

              Type of grantee

            • URI (string) --

              URI of the grantee group.

          • Permission (string) --

            Logging permissions assigned to the Grantee for the bucket.

      • TargetPrefix (string) -- [REQUIRED]

        This element lets you specify a prefix for the keys that the log files will be stored under.

Returns

None

put_bucket_metrics_configuration(**kwargs)

Sets a metrics configuration (specified by the metrics configuration ID) for the bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_metrics_configuration(
    Bucket='string',
    Id='string',
    MetricsConfiguration={
        'Id': 'string',
        'Filter': {
            'Prefix': 'string',
            'Tag': {
                'Key': 'string',
                'Value': 'string'
            },
            'And': {
                'Prefix': 'string',
                'Tags': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ]
            }
        }
    }
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The name of the bucket for which the metrics configuration is set.

  • Id (string) --

    [REQUIRED]

    The ID used to identify the metrics configuration.

  • MetricsConfiguration (dict) --

    [REQUIRED]

    Specifies the metrics configuration.

    • Id (string) -- [REQUIRED]

      The ID used to identify the metrics configuration.

    • Filter (dict) --

      Specifies a metrics configuration filter. The metrics configuration will only include objects that meet the filter's criteria. A filter must be a prefix, a tag, or a conjunction (MetricsAndOperator).

      • Prefix (string) --

        The prefix used when evaluating a metrics filter.

      • Tag (dict) --

        The tag used when evaluating a metrics filter.

        • Key (string) -- [REQUIRED]

          Name of the tag.

        • Value (string) -- [REQUIRED]

          Value of the tag.

      • And (dict) --

        A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.

        • Prefix (string) --

          The prefix used when evaluating an AND predicate.

        • Tags (list) --

          The list of tags used when evaluating an AND predicate.

          • (dict) --
            • Key (string) -- [REQUIRED]

              Name of the tag.

            • Value (string) -- [REQUIRED]

              Value of the tag.

Returns

None

put_bucket_notification(**kwargs)

Deprecated, see the PutBucketNotificationConfiguraiton operation.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_notification(
    Bucket='string',
    NotificationConfiguration={
        'TopicConfiguration': {
            'Id': 'string',
            'Events': [
                's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            ],
            'Event': 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            'Topic': 'string'
        },
        'QueueConfiguration': {
            'Id': 'string',
            'Event': 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            'Events': [
                's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            ],
            'Queue': 'string'
        },
        'CloudFunctionConfiguration': {
            'Id': 'string',
            'Event': 's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            'Events': [
                's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
            ],
            'CloudFunction': 'string',
            'InvocationRole': 'string'
        }
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • NotificationConfiguration (dict) --

    [REQUIRED]

    • TopicConfiguration (dict) --
      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • Events (list) --
        • (string) --

          Bucket event for which to send notifications.

      • Event (string) --

        Bucket event for which to send notifications.

      • Topic (string) --

        Amazon SNS topic to which Amazon S3 will publish a message to report the specified events for the bucket.

    • QueueConfiguration (dict) --
      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • Event (string) --

        Bucket event for which to send notifications.

      • Events (list) --
        • (string) --

          Bucket event for which to send notifications.

      • Queue (string) --
    • CloudFunctionConfiguration (dict) --
      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • Event (string) --

        Bucket event for which to send notifications.

      • Events (list) --
        • (string) --

          Bucket event for which to send notifications.

      • CloudFunction (string) --
      • InvocationRole (string) --
Returns

None

put_bucket_notification_configuration(**kwargs)

Enables notifications of specified events for a bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_notification_configuration(
    Bucket='string',
    NotificationConfiguration={
        'TopicConfigurations': [
            {
                'Id': 'string',
                'TopicArn': 'string',
                'Events': [
                    's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
                ],
                'Filter': {
                    'Key': {
                        'FilterRules': [
                            {
                                'Name': 'prefix'|'suffix',
                                'Value': 'string'
                            },
                        ]
                    }
                }
            },
        ],
        'QueueConfigurations': [
            {
                'Id': 'string',
                'QueueArn': 'string',
                'Events': [
                    's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
                ],
                'Filter': {
                    'Key': {
                        'FilterRules': [
                            {
                                'Name': 'prefix'|'suffix',
                                'Value': 'string'
                            },
                        ]
                    }
                }
            },
        ],
        'LambdaFunctionConfigurations': [
            {
                'Id': 'string',
                'LambdaFunctionArn': 'string',
                'Events': [
                    's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
                ],
                'Filter': {
                    'Key': {
                        'FilterRules': [
                            {
                                'Name': 'prefix'|'suffix',
                                'Value': 'string'
                            },
                        ]
                    }
                }
            },
        ]
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • NotificationConfiguration (dict) --

    [REQUIRED]

    Container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off on the bucket.

    • TopicConfigurations (list) --
      • (dict) --

        Container for specifying the configuration when you want Amazon S3 to publish events to an Amazon Simple Notification Service (Amazon SNS) topic.

        • Id (string) --

          Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

        • TopicArn (string) -- [REQUIRED]

          Amazon SNS topic ARN to which Amazon S3 will publish a message when it detects events of specified type.

        • Events (list) -- [REQUIRED]
          • (string) --

            Bucket event for which to send notifications.

        • Filter (dict) --

          Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

          • Key (dict) --

            Container for object key name prefix and suffix filtering rules.

            • FilterRules (list) --

              A list of containers for key value pair that defines the criteria for the filter rule.

              • (dict) --

                Container for key value pair that defines the criteria for the filter rule.

                • Name (string) --

                  Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

                • Value (string) --
    • QueueConfigurations (list) --
      • (dict) --

        Container for specifying an configuration when you want Amazon S3 to publish events to an Amazon Simple Queue Service (Amazon SQS) queue.

        • Id (string) --

          Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

        • QueueArn (string) -- [REQUIRED]

          Amazon SQS queue ARN to which Amazon S3 will publish a message when it detects events of specified type.

        • Events (list) -- [REQUIRED]
          • (string) --

            Bucket event for which to send notifications.

        • Filter (dict) --

          Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

          • Key (dict) --

            Container for object key name prefix and suffix filtering rules.

            • FilterRules (list) --

              A list of containers for key value pair that defines the criteria for the filter rule.

              • (dict) --

                Container for key value pair that defines the criteria for the filter rule.

                • Name (string) --

                  Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

                • Value (string) --
    • LambdaFunctionConfigurations (list) --
      • (dict) --

        Container for specifying the AWS Lambda notification configuration.

        • Id (string) --

          Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

        • LambdaFunctionArn (string) -- [REQUIRED]

          Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.

        • Events (list) -- [REQUIRED]
          • (string) --

            Bucket event for which to send notifications.

        • Filter (dict) --

          Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

          • Key (dict) --

            Container for object key name prefix and suffix filtering rules.

            • FilterRules (list) --

              A list of containers for key value pair that defines the criteria for the filter rule.

              • (dict) --

                Container for key value pair that defines the criteria for the filter rule.

                • Name (string) --

                  Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

                • Value (string) --
Returns

None

put_bucket_policy(**kwargs)

Replaces a policy on a bucket. If the bucket already has a policy, the one in this request completely replaces it.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_policy(
    Bucket='string',
    ConfirmRemoveSelfBucketAccess=True|False,
    Policy='string'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • ConfirmRemoveSelfBucketAccess (boolean) -- Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in the future.
  • Policy (string) --

    [REQUIRED]

    The bucket policy as a JSON document.

Returns

None

put_bucket_replication(**kwargs)

Creates a new replication configuration (or replaces an existing one, if present).

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_replication(
    Bucket='string',
    ReplicationConfiguration={
        'Role': 'string',
        'Rules': [
            {
                'ID': 'string',
                'Prefix': 'string',
                'Status': 'Enabled'|'Disabled',
                'SourceSelectionCriteria': {
                    'SseKmsEncryptedObjects': {
                        'Status': 'Enabled'|'Disabled'
                    }
                },
                'Destination': {
                    'Bucket': 'string',
                    'Account': 'string',
                    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
                    'AccessControlTranslation': {
                        'Owner': 'Destination'
                    },
                    'EncryptionConfiguration': {
                        'ReplicaKmsKeyID': 'string'
                    }
                }
            },
        ]
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • ReplicationConfiguration (dict) --

    [REQUIRED]

    Container for replication rules. You can add as many as 1,000 rules. Total replication configuration size can be up to 2 MB.

    • Role (string) -- [REQUIRED]

      Amazon Resource Name (ARN) of an IAM role for Amazon S3 to assume when replicating the objects.

    • Rules (list) -- [REQUIRED]

      Container for information about a particular replication rule. Replication configuration must have at least one rule and can contain up to 1,000 rules.

      • (dict) --

        Container for information about a particular replication rule.

        • ID (string) --

          Unique identifier for the rule. The value cannot be longer than 255 characters.

        • Prefix (string) -- [REQUIRED]

          Object keyname prefix identifying one or more objects to which the rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes are not supported.

        • Status (string) -- [REQUIRED]

          The rule is ignored if status is not Enabled.

        • SourceSelectionCriteria (dict) --

          Container for filters that define which source objects should be replicated.

          • SseKmsEncryptedObjects (dict) --

            Container for filter information of selection of KMS Encrypted S3 objects.

            • Status (string) -- [REQUIRED]

              The replication for KMS encrypted S3 objects is disabled if status is not Enabled.

        • Destination (dict) -- [REQUIRED]

          Container for replication destination information.

          • Bucket (string) -- [REQUIRED]

            Amazon resource name (ARN) of the bucket where you want Amazon S3 to store replicas of the object identified by the rule.

          • Account (string) --

            Account ID of the destination bucket. Currently this is only being verified if Access Control Translation is enabled

          • StorageClass (string) --

            The class of storage used to store the object.

          • AccessControlTranslation (dict) --

            Container for information regarding the access control for replicas.

            • Owner (string) -- [REQUIRED]

              The override value for the owner of the replica object.

          • EncryptionConfiguration (dict) --

            Container for information regarding encryption based configuration for replicas.

            • ReplicaKmsKeyID (string) --

              The id of the KMS key used to encrypt the replica object.

Returns

None

put_bucket_request_payment(**kwargs)

Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download. Documentation on requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_request_payment(
    Bucket='string',
    RequestPaymentConfiguration={
        'Payer': 'Requester'|'BucketOwner'
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • RequestPaymentConfiguration (dict) --

    [REQUIRED]

    • Payer (string) -- [REQUIRED]

      Specifies who pays for the download and request fees.

Returns

None

put_bucket_tagging(**kwargs)

Sets the tags for a bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_tagging(
    Bucket='string',
    Tagging={
        'TagSet': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ]
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Tagging (dict) --

    [REQUIRED]

    • TagSet (list) -- [REQUIRED]
      • (dict) --
        • Key (string) -- [REQUIRED]

          Name of the tag.

        • Value (string) -- [REQUIRED]

          Value of the tag.

Returns

None

put_bucket_versioning(**kwargs)

Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_versioning(
    Bucket='string',
    MFA='string',
    VersioningConfiguration={
        'MFADelete': 'Enabled'|'Disabled',
        'Status': 'Enabled'|'Suspended'
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • VersioningConfiguration (dict) --

    [REQUIRED]

    • MFADelete (string) --

      Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned.

    • Status (string) --

      The versioning state of the bucket.

Returns

None

put_bucket_website(**kwargs)

Set the website configuration for a bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_bucket_website(
    Bucket='string',
    WebsiteConfiguration={
        'ErrorDocument': {
            'Key': 'string'
        },
        'IndexDocument': {
            'Suffix': 'string'
        },
        'RedirectAllRequestsTo': {
            'HostName': 'string',
            'Protocol': 'http'|'https'
        },
        'RoutingRules': [
            {
                'Condition': {
                    'HttpErrorCodeReturnedEquals': 'string',
                    'KeyPrefixEquals': 'string'
                },
                'Redirect': {
                    'HostName': 'string',
                    'HttpRedirectCode': 'string',
                    'Protocol': 'http'|'https',
                    'ReplaceKeyPrefixWith': 'string',
                    'ReplaceKeyWith': 'string'
                }
            },
        ]
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • WebsiteConfiguration (dict) --

    [REQUIRED]

    • ErrorDocument (dict) --
      • Key (string) -- [REQUIRED]

        The object key name to use when a 4XX class error occurs.

    • IndexDocument (dict) --
      • Suffix (string) -- [REQUIRED]

        A suffix that is appended to a request that is for a directory on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character.

    • RedirectAllRequestsTo (dict) --
      • HostName (string) -- [REQUIRED]

        Name of the host where requests will be redirected.

      • Protocol (string) --

        Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

    • RoutingRules (list) --
      • (dict) --
        • Condition (dict) --

          A container for describing a condition that must be met for the specified redirect to apply. For example, 1. If request is for pages in the /docs folder, redirect to the /documents folder. 2. If request results in HTTP error 4xx, redirect request to another host where you might process the error.

          • HttpErrorCodeReturnedEquals (string) --

            The HTTP error code when the redirect is applied. In the event of an error, if the error code equals this value, then the specified redirect is applied. Required when parent element Condition is specified and sibling KeyPrefixEquals is not specified. If both are specified, then both must be true for the redirect to be applied.

          • KeyPrefixEquals (string) --

            The object key name prefix when the redirect is applied. For example, to redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. To redirect request for all pages with the prefix docs/, the key prefix will be /docs, which identifies all objects in the docs/ folder. Required when the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is not specified. If both conditions are specified, both must be true for the redirect to be applied.

        • Redirect (dict) -- [REQUIRED]

          Container for redirect information. You can redirect requests to another host, to another page, or with another protocol. In the event of an error, you can can specify a different error code to return.

          • HostName (string) --

            The host name to use in the redirect request.

          • HttpRedirectCode (string) --

            The HTTP redirect code to use on the response. Not required if one of the siblings is present.

          • Protocol (string) --

            Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

          • ReplaceKeyPrefixWith (string) --

            The object key prefix to use in the redirect request. For example, to redirect requests for all pages with prefix docs/ (objects in the docs/ folder) to documents/, you can set a condition block with KeyPrefixEquals set to docs/ and in the Redirect set ReplaceKeyPrefixWith to /documents. Not required if one of the siblings is present. Can be present only if ReplaceKeyWith is not provided.

          • ReplaceKeyWith (string) --

            The specific object key to use in the redirect request. For example, redirect request to error.html. Not required if one of the sibling is present. Can be present only if ReplaceKeyPrefixWith is not provided.

Returns

None

put_object(**kwargs)

Adds an object to a bucket.

See also: AWS API Documentation

Request Syntax

response = client.put_object(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    Body=b'bytes'|file,
    Bucket='string',
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentLength=123,
    ContentMD5='string',
    ContentType='string',
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Key='string',
    Metadata={
        'string': 'string'
    },
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • Body (bytes or seekable file-like object) -- Object data.
  • Bucket (string) --

    [REQUIRED]

    Name of the bucket to which the PUT operation was initiated.

  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentLength (integer) -- Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
  • ContentMD5 (string) -- The base64-encoded 128-bit MD5 digest of the part data.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Key (string) --

    [REQUIRED]

    Object key for which the PUT operation was initiated.

  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object. The tag-set must be encoded as URL Query parameters
Return type

dict

Returns

Response Syntax

{
    'Expiration': 'string',
    'ETag': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'VersionId': 'string',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • 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.

    • ETag (string) --

      Entity tag for the uploaded object.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • VersionId (string) --

      Version of the object.

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

put_object_acl(**kwargs)

uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket

See also: AWS API Documentation

Request Syntax

response = client.put_object_acl(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    AccessControlPolicy={
        'Grants': [
            {
                'Grantee': {
                    'DisplayName': 'string',
                    'EmailAddress': 'string',
                    'ID': 'string',
                    'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                    'URI': 'string'
                },
                'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
            },
        ],
        'Owner': {
            'DisplayName': 'string',
            'ID': 'string'
        }
    },
    Bucket='string',
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWrite='string',
    GrantWriteACP='string',
    Key='string',
    RequestPayer='requester',
    VersionId='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • AccessControlPolicy (dict) --
    • Grants (list) --

      A list of grants.

      • (dict) --
        • Grantee (dict) --
          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) -- [REQUIRED]

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Specifies the permission given to the grantee.

    • Owner (dict) --
      • DisplayName (string) --
      • ID (string) --
  • Bucket (string) -- [REQUIRED]
  • GrantFullControl (string) -- Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
  • GrantRead (string) -- Allows grantee to list the objects in the bucket.
  • GrantReadACP (string) -- Allows grantee to read the bucket ACL.
  • GrantWrite (string) -- Allows grantee to create, overwrite, and delete any object in the bucket.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable bucket.
  • Key (string) -- [REQUIRED]
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • VersionId (string) -- VersionId used to reference a specific version of the object.
Return type

dict

Returns

Response Syntax

{
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

put_object_tagging(**kwargs)

Sets the supplied tag-set to an object that already exists in a bucket

See also: AWS API Documentation

Request Syntax

response = client.put_object_tagging(
    Bucket='string',
    Key='string',
    VersionId='string',
    ContentMD5='string',
    Tagging={
        'TagSet': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ]
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • VersionId (string) --
  • ContentMD5 (string) --
  • Tagging (dict) --

    [REQUIRED]

    • TagSet (list) -- [REQUIRED]
      • (dict) --
        • Key (string) -- [REQUIRED]

          Name of the tag.

        • Value (string) -- [REQUIRED]

          Value of the tag.

Return type

dict

Returns

Response Syntax

{
    'VersionId': 'string'
}

Response Structure

  • (dict) --
    • VersionId (string) --

restore_object(**kwargs)

Restores an archived copy of an object back into Amazon S3

See also: AWS API Documentation

Request Syntax

response = client.restore_object(
    Bucket='string',
    Key='string',
    VersionId='string',
    RestoreRequest={
        'Days': 123,
        'GlacierJobParameters': {
            'Tier': 'Standard'|'Bulk'|'Expedited'
        },
        'Type': 'SELECT',
        'Tier': 'Standard'|'Bulk'|'Expedited',
        'Description': 'string',
        'SelectParameters': {
            'InputSerialization': {
                'CSV': {
                    'FileHeaderInfo': 'USE'|'IGNORE'|'NONE',
                    'Comments': 'string',
                    'QuoteEscapeCharacter': 'string',
                    'RecordDelimiter': 'string',
                    'FieldDelimiter': 'string',
                    'QuoteCharacter': 'string',
                    'AllowQuotedRecordDelimiter': True|False
                },
                'CompressionType': 'NONE'|'GZIP'|'BZIP2',
                'JSON': {
                    'Type': 'DOCUMENT'|'LINES'
                }
            },
            'ExpressionType': 'SQL',
            'Expression': 'string',
            'OutputSerialization': {
                'CSV': {
                    'QuoteFields': 'ALWAYS'|'ASNEEDED',
                    'QuoteEscapeCharacter': 'string',
                    'RecordDelimiter': 'string',
                    'FieldDelimiter': 'string',
                    'QuoteCharacter': 'string'
                },
                'JSON': {
                    'RecordDelimiter': 'string'
                }
            }
        },
        'OutputLocation': {
            'S3': {
                'BucketName': 'string',
                'Prefix': 'string',
                'Encryption': {
                    'EncryptionType': 'AES256'|'aws:kms',
                    'KMSKeyId': 'string',
                    'KMSContext': 'string'
                },
                'CannedACL': 'private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
                'AccessControlList': [
                    {
                        'Grantee': {
                            'DisplayName': 'string',
                            'EmailAddress': 'string',
                            'ID': 'string',
                            'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                            'URI': 'string'
                        },
                        'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
                    },
                ],
                'Tagging': {
                    'TagSet': [
                        {
                            'Key': 'string',
                            'Value': 'string'
                        },
                    ]
                },
                'UserMetadata': [
                    {
                        'Name': 'string',
                        'Value': 'string'
                    },
                ],
                'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA'
            }
        }
    },
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • VersionId (string) --
  • RestoreRequest (dict) --

    Container for restore job parameters.

    • Days (integer) --

      Lifetime of the active copy in days. Do not use with restores that specify OutputLocation.

    • GlacierJobParameters (dict) --

      Glacier related parameters pertaining to this job. Do not use with restores that specify OutputLocation.

      • Tier (string) -- [REQUIRED]

        Glacier retrieval tier at which the restore will be processed.

    • Type (string) --

      Type of restore request.

    • Tier (string) --

      Glacier retrieval tier at which the restore will be processed.

    • Description (string) --

      The optional description for the job.

    • SelectParameters (dict) --

      Describes the parameters for Select job types.

      • InputSerialization (dict) -- [REQUIRED]

        Describes the serialization format of the object.

        • CSV (dict) --

          Describes the serialization of a CSV-encoded object.

          • FileHeaderInfo (string) --

            Describes the first line of input. Valid values: None, Ignore, Use.

          • Comments (string) --

            Single character used to indicate a row should be ignored when present at the start of a row.

          • QuoteEscapeCharacter (string) --

            Single character used for escaping the quote character inside an already escaped value.

          • RecordDelimiter (string) --

            Value used to separate individual records.

          • FieldDelimiter (string) --

            Value used to separate individual fields in a record.

          • QuoteCharacter (string) --

            Value used for escaping where the field delimiter is part of the value.

          • AllowQuotedRecordDelimiter (boolean) --

            Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.

        • CompressionType (string) --

          Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.

        • JSON (dict) --

          Specifies JSON as object's input serialization format.

          • Type (string) --

            The type of JSON. Valid values: Document, Lines.

      • ExpressionType (string) -- [REQUIRED]

        The type of the provided expression (e.g., SQL).

      • Expression (string) -- [REQUIRED]

        The expression that is used to query the object.

      • OutputSerialization (dict) -- [REQUIRED]

        Describes how the results of the Select job are serialized.

        • CSV (dict) --

          Describes the serialization of CSV-encoded Select results.

          • QuoteFields (string) --

            Indicates whether or not all output fields should be quoted.

          • QuoteEscapeCharacter (string) --

            Single character used for escaping the quote character inside an already escaped value.

          • RecordDelimiter (string) --

            Value used to separate individual records.

          • FieldDelimiter (string) --

            Value used to separate individual fields in a record.

          • QuoteCharacter (string) --

            Value used for escaping where the field delimiter is part of the value.

        • JSON (dict) --

          Specifies JSON as request's output serialization format.

          • RecordDelimiter (string) --

            The value used to separate individual records in the output.

    • OutputLocation (dict) --

      Describes the location where the restore job's output is stored.

      • S3 (dict) --

        Describes an S3 location that will receive the results of the restore request.

        • BucketName (string) -- [REQUIRED]

          The name of the bucket where the restore results will be placed.

        • Prefix (string) -- [REQUIRED]

          The prefix that is prepended to the restore results for this request.

        • Encryption (dict) --

          Describes the server-side encryption that will be applied to the restore results.

          • EncryptionType (string) -- [REQUIRED]

            The server-side encryption algorithm used when storing job results in Amazon S3 (e.g., AES256, aws:kms).

          • KMSKeyId (string) --

            If the encryption type is aws:kms, this optional value specifies the AWS KMS key ID to use for encryption of job results.

          • KMSContext (string) --

            If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.

        • CannedACL (string) --

          The canned ACL to apply to the restore results.

        • AccessControlList (list) --

          A list of grants that control access to the staged results.

          • (dict) --
            • Grantee (dict) --
              • DisplayName (string) --

                Screen name of the grantee.

              • EmailAddress (string) --

                Email address of the grantee.

              • ID (string) --

                The canonical user ID of the grantee.

              • Type (string) -- [REQUIRED]

                Type of grantee

              • URI (string) --

                URI of the grantee group.

            • Permission (string) --

              Specifies the permission given to the grantee.

        • Tagging (dict) --

          The tag-set that is applied to the restore results.

          • TagSet (list) -- [REQUIRED]
            • (dict) --
              • Key (string) -- [REQUIRED]

                Name of the tag.

              • Value (string) -- [REQUIRED]

                Value of the tag.

        • UserMetadata (list) --

          A list of metadata to store with the restore results in S3.

          • (dict) --

            A metadata key-value pair to store with an object.

            • Name (string) --
            • Value (string) --
        • StorageClass (string) --

          The class of storage used to store the restore results.

  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'RequestCharged': 'requester',
    'RestoreOutputPath': 'string'
}

Response Structure

  • (dict) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • RestoreOutputPath (string) --

      Indicates the path in the provided S3 output location where Select results will be restored to.

select_object_content(**kwargs)

This operation filters the contents of an Amazon S3 object based on a simple Structured Query Language (SQL) statement. In the request, along with the SQL expression, you must also specify a data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data into records, and returns only records that match the specified SQL expression. You must also specify the data serialization format for the response.

See also: AWS API Documentation

Request Syntax

response = client.select_object_content(
    Bucket='string',
    Key='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    Expression='string',
    ExpressionType='SQL',
    RequestProgress={
        'Enabled': True|False
    },
    InputSerialization={
        'CSV': {
            'FileHeaderInfo': 'USE'|'IGNORE'|'NONE',
            'Comments': 'string',
            'QuoteEscapeCharacter': 'string',
            'RecordDelimiter': 'string',
            'FieldDelimiter': 'string',
            'QuoteCharacter': 'string',
            'AllowQuotedRecordDelimiter': True|False
        },
        'CompressionType': 'NONE'|'GZIP'|'BZIP2',
        'JSON': {
            'Type': 'DOCUMENT'|'LINES'
        }
    },
    OutputSerialization={
        'CSV': {
            'QuoteFields': 'ALWAYS'|'ASNEEDED',
            'QuoteEscapeCharacter': 'string',
            'RecordDelimiter': 'string',
            'FieldDelimiter': 'string',
            'QuoteCharacter': 'string'
        },
        'JSON': {
            'RecordDelimiter': 'string'
        }
    }
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The S3 Bucket.

  • Key (string) --

    [REQUIRED]

    The Object Key.

  • SSECustomerAlgorithm (string) -- The SSE Algorithm used to encrypt the object. For more information, go to Server-Side Encryption (Using Customer-Provided Encryption Keys .
  • SSECustomerKey (string) -- The SSE Customer Key. For more information, go to Server-Side Encryption (Using Customer-Provided Encryption Keys .
  • SSECustomerKeyMD5 (string) --

    The SSE Customer Key MD5. For more information, go to Server-Side Encryption (Using Customer-Provided Encryption Keys .

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • Expression (string) --

    [REQUIRED]

    The expression that is used to query the object.

  • ExpressionType (string) --

    [REQUIRED]

    The type of the provided expression (e.g., SQL).

  • RequestProgress (dict) --

    Specifies if periodic request progress information should be enabled.

    • Enabled (boolean) --

      Specifies whether periodic QueryProgress frames should be sent. Valid values: TRUE, FALSE. Default value: FALSE.

  • InputSerialization (dict) --

    [REQUIRED]

    Describes the format of the data in the object that is being queried.

    • CSV (dict) --

      Describes the serialization of a CSV-encoded object.

      • FileHeaderInfo (string) --

        Describes the first line of input. Valid values: None, Ignore, Use.

      • Comments (string) --

        Single character used to indicate a row should be ignored when present at the start of a row.

      • QuoteEscapeCharacter (string) --

        Single character used for escaping the quote character inside an already escaped value.

      • RecordDelimiter (string) --

        Value used to separate individual records.

      • FieldDelimiter (string) --

        Value used to separate individual fields in a record.

      • QuoteCharacter (string) --

        Value used for escaping where the field delimiter is part of the value.

      • AllowQuotedRecordDelimiter (boolean) --

        Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.

    • CompressionType (string) --

      Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.

    • JSON (dict) --

      Specifies JSON as object's input serialization format.

      • Type (string) --

        The type of JSON. Valid values: Document, Lines.

  • OutputSerialization (dict) --

    [REQUIRED]

    Describes the format of the data that you want Amazon S3 to return in response.

    • CSV (dict) --

      Describes the serialization of CSV-encoded Select results.

      • QuoteFields (string) --

        Indicates whether or not all output fields should be quoted.

      • QuoteEscapeCharacter (string) --

        Single character used for escaping the quote character inside an already escaped value.

      • RecordDelimiter (string) --

        Value used to separate individual records.

      • FieldDelimiter (string) --

        Value used to separate individual fields in a record.

      • QuoteCharacter (string) --

        Value used for escaping where the field delimiter is part of the value.

    • JSON (dict) --

      Specifies JSON as request's output serialization format.

      • RecordDelimiter (string) --

        The value used to separate individual records in the output.

Return type

dict

Returns

The response of this operation contains an EventStream member. When iterated the EventStream will yield events based on the structure below, where only one of the top level keys will be present for any given event.

Response Syntax

{
    'Payload': EventStream({
        'Records': {
            'Payload': b'bytes'
        },
        'Stats': {
            'Details': {
                'BytesScanned': 123,
                'BytesProcessed': 123,
                'BytesReturned': 123
            }
        },
        'Progress': {
            'Details': {
                'BytesScanned': 123,
                'BytesProcessed': 123,
                'BytesReturned': 123
            }
        },
        'Cont': {},
        'End': {}
    })
}

Response Structure

  • (dict) --

    • Payload (EventStream) --

      • Records (dict) --

        The Records Event.

        • Payload (bytes) --

          The byte array of partial, one or more result records.

      • Stats (dict) --

        The Stats Event.

        • Details (dict) --

          The Stats event details.

          • BytesScanned (integer) --

            Total number of object bytes scanned.

          • BytesProcessed (integer) --

            Total number of uncompressed object bytes processed.

          • BytesReturned (integer) --

            Total number of bytes of records payload data returned.

      • Progress (dict) --

        The Progress Event.

        • Details (dict) --

          The Progress event details.

          • BytesScanned (integer) --

            Current number of object bytes scanned.

          • BytesProcessed (integer) --

            Current number of uncompressed object bytes processed.

          • BytesReturned (integer) --

            Current number of bytes of records payload data returned.

      • Cont (dict) --

        The Continuation Event.

      • End (dict) --

        The End Event.

upload_file(Filename, Bucket, Key, ExtraArgs=None, Callback=None, Config=None)

Upload a file to an S3 object.

Usage:

import boto3
s3 = boto3.resource('s3')
s3.meta.client.upload_file('/tmp/hello.txt', 'mybucket', 'hello.txt')

Similar behavior as S3Transfer's upload_file() method, except that parameters are capitalized. Detailed examples can be found at S3Transfer's Usage.

Parameters
  • Filename (str) -- The path to the file to upload.
  • Bucket (str) -- The name of the bucket to upload to.
  • Key (str) -- The name of the key to upload to.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the upload.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the transfer.
upload_fileobj(Fileobj, Bucket, Key, ExtraArgs=None, Callback=None, Config=None)

Upload a file-like object to S3.

The file-like object must be in binary mode.

This is a managed transfer which will perform a multipart upload in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.client('s3')

with open('filename', 'rb') as data:
    s3.upload_fileobj(data, 'mybucket', 'mykey')
Parameters
  • Fileobj (a file-like object) -- A file-like object to upload. At a minimum, it must implement the read method, and must return bytes.
  • Bucket (str) -- The name of the bucket to upload to.
  • Key (str) -- The name of the key to upload to.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the upload.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the upload.
upload_part(**kwargs)

Uploads a part in a multipart upload.

Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.

See also: AWS API Documentation

Request Syntax

response = client.upload_part(
    Body=b'bytes'|file,
    Bucket='string',
    ContentLength=123,
    ContentMD5='string',
    Key='string',
    PartNumber=123,
    UploadId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester'
)
Parameters
  • Body (bytes or seekable file-like object) -- Object data.
  • Bucket (string) --

    [REQUIRED]

    Name of the bucket to which the multipart upload was initiated.

  • ContentLength (integer) -- Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
  • ContentMD5 (string) -- The base64-encoded 128-bit MD5 digest of the part data.
  • Key (string) --

    [REQUIRED]

    Object key for which the multipart upload was initiated.

  • PartNumber (integer) --

    [REQUIRED]

    Part number of part being uploaded. This is a positive integer between 1 and 10,000.

  • UploadId (string) --

    [REQUIRED]

    Upload ID identifying the multipart upload whose part is being uploaded.

  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'ETag': 'string',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • ETag (string) --

      Entity tag for the uploaded object.

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

upload_part_copy(**kwargs)

Uploads a part by copying data from an existing object as data source.

See also: AWS API Documentation

Request Syntax

response = client.upload_part_copy(
    Bucket='string',
    CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'},
    CopySourceIfMatch='string',
    CopySourceIfModifiedSince=datetime(2015, 1, 1),
    CopySourceIfNoneMatch='string',
    CopySourceIfUnmodifiedSince=datetime(2015, 1, 1),
    CopySourceRange='string',
    Key='string',
    PartNumber=123,
    UploadId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    CopySourceSSECustomerAlgorithm='string',
    CopySourceSSECustomerKey='string',
    RequestPayer='requester'
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • CopySource (str or dict) -- [REQUIRED] The name of the source bucket, key name of the source object, and optional version ID of the source object. You can either provide this value as a string or a dictionary. The string form is {bucket}/{key} or {bucket}/{key}?versionId={versionId} if you want to copy a specific version. You can also provide this value as a dictionary. The dictionary format is recommended over the string format because it is more explicit. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • CopySourceIfMatch (string) -- Copies the object if its entity tag (ETag) matches the specified tag.
  • CopySourceIfModifiedSince (datetime) -- Copies the object if it has been modified since the specified time.
  • CopySourceIfNoneMatch (string) -- Copies the object if its entity tag (ETag) is different than the specified ETag.
  • CopySourceIfUnmodifiedSince (datetime) -- Copies the object if it hasn't been modified since the specified time.
  • CopySourceRange (string) -- The range of bytes to copy from the source object. The range value must use the form bytes=first-last, where the first and last are the zero-based byte offsets to copy. For example, bytes=0-9 indicates that you want to copy the first ten bytes of the source. You can copy a range only if the source object is greater than 5 GB.
  • Key (string) -- [REQUIRED]
  • PartNumber (integer) --

    [REQUIRED]

    Part number of part being copied. This is a positive integer between 1 and 10,000.

  • UploadId (string) --

    [REQUIRED]

    Upload ID identifying the multipart upload whose part is being copied.

  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • CopySourceSSECustomerAlgorithm (string) -- Specifies the algorithm to use when decrypting the source object (e.g., AES256).
  • CopySourceSSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
  • CopySourceSSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'CopySourceVersionId': 'string',
    'CopyPartResult': {
        'ETag': 'string',
        'LastModified': datetime(2015, 1, 1)
    },
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • CopySourceVersionId (string) --

      The version of the source object that was copied, if you have enabled versioning on the source bucket.

    • CopyPartResult (dict) --

      • ETag (string) --

        Entity tag of the object.

      • LastModified (datetime) --

        Date and time at which the object was uploaded.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

Paginators

The available paginators are:

class S3.Paginator.ListMultipartUploads
paginator = client.get_paginator('list_multipart_uploads')
paginate(**kwargs)

Creates an iterator that will paginate through responses from S3.Client.list_multipart_uploads().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    Prefix='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Delimiter (string) -- Character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • Prefix (string) -- Lists in-progress uploads only for those keys that begin with the specified prefix.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Bucket': 'string',
    'KeyMarker': 'string',
    'UploadIdMarker': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'MaxUploads': 123,
    'IsTruncated': True|False,
    'Uploads': [
        {
            'UploadId': 'string',
            'Key': 'string',
            'Initiated': datetime(2015, 1, 1),
            'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            },
            'Initiator': {
                'ID': 'string',
                'DisplayName': 'string'
            }
        },
    ],
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url',
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Bucket (string) --

      Name of the bucket to which the multipart upload was initiated.

    • KeyMarker (string) --

      The key at or after which the listing began.

    • UploadIdMarker (string) --

      Upload ID after which listing began.

    • Prefix (string) --

      When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.

    • Delimiter (string) --

    • MaxUploads (integer) --

      Maximum number of multipart uploads that could have been included in the response.

    • IsTruncated (boolean) --

      Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.

    • Uploads (list) --

      • (dict) --

        • UploadId (string) --

          Upload ID that identifies the multipart upload.

        • Key (string) --

          Key of the object for which the multipart upload was initiated.

        • Initiated (datetime) --

          Date and time at which the multipart upload was initiated.

        • StorageClass (string) --

          The class of storage used to store the object.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
        • Initiator (dict) --

          Identifies who initiated the multipart upload.

          • ID (string) --

            If the principal is an AWS account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.

          • DisplayName (string) --

            Name of the Principal.

    • CommonPrefixes (list) --

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

    • NextToken (string) --

      A token to resume pagination.

class S3.Paginator.ListObjectVersions
paginator = client.get_paginator('list_object_versions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from S3.Client.list_object_versions().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    Prefix='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'KeyMarker': 'string',
    'VersionIdMarker': 'string',
    'Versions': [
        {
            'ETag': 'string',
            'Size': 123,
            'StorageClass': 'STANDARD',
            'Key': 'string',
            'VersionId': 'string',
            'IsLatest': True|False,
            'LastModified': datetime(2015, 1, 1),
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            }
        },
    ],
    'DeleteMarkers': [
        {
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            },
            'Key': 'string',
            'VersionId': 'string',
            'IsLatest': True|False,
            'LastModified': datetime(2015, 1, 1)
        },
    ],
    'Name': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'MaxKeys': 123,
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url',
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria. If your results were truncated, you can make a follow-up paginated request using the NextKeyMarker and NextVersionIdMarker response parameters as a starting place in another request to return the rest of the results.

    • KeyMarker (string) --

      Marks the last Key returned in a truncated response.

    • VersionIdMarker (string) --

    • Versions (list) --

      • (dict) --

        • ETag (string) --

        • Size (integer) --

          Size in bytes of the object.

        • StorageClass (string) --

          The class of storage used to store the object.

        • Key (string) --

          The object key.

        • VersionId (string) --

          Version ID of an object.

        • IsLatest (boolean) --

          Specifies whether the object is (true) or is not (false) the latest version of an object.

        • LastModified (datetime) --

          Date and time the object was last modified.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
    • DeleteMarkers (list) --

      • (dict) --

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
        • Key (string) --

          The object key.

        • VersionId (string) --

          Version ID of an object.

        • IsLatest (boolean) --

          Specifies whether the object is (true) or is not (false) the latest version of an object.

        • LastModified (datetime) --

          Date and time the object was last modified.

    • Name (string) --

    • Prefix (string) --

    • Delimiter (string) --

    • MaxKeys (integer) --

    • CommonPrefixes (list) --

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

    • NextToken (string) --

      A token to resume pagination.

class S3.Paginator.ListObjects
paginator = client.get_paginator('list_objects')
paginate(**kwargs)

Creates an iterator that will paginate through responses from S3.Client.list_objects().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    Prefix='string',
    RequestPayer='requester',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the list objects request. Bucket owners need not specify this parameter in their requests.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'Marker': 'string',
    'NextMarker': 'string',
    'Contents': [
        {
            'Key': 'string',
            'LastModified': datetime(2015, 1, 1),
            'ETag': 'string',
            'Size': 123,
            'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'GLACIER'|'STANDARD_IA'|'ONEZONE_IA',
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            }
        },
    ],
    'Name': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'MaxKeys': 123,
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url',
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.

    • Marker (string) --

    • NextMarker (string) --

      When response is truncated (the IsTruncated element value in the response is true), you can use the key name in this field as marker in the subsequent request to get next set of objects. Amazon S3 lists objects in alphabetical order Note: This element is returned only if you have delimiter request parameter specified. If response does not include the NextMaker and it is truncated, you can use the value of the last Key in the response as the marker in the subsequent request to get the next set of object keys.

    • Contents (list) --

      • (dict) --

        • Key (string) --

        • LastModified (datetime) --

        • ETag (string) --

        • Size (integer) --

        • StorageClass (string) --

          The class of storage used to store the object.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
    • Name (string) --

    • Prefix (string) --

    • Delimiter (string) --

    • MaxKeys (integer) --

    • CommonPrefixes (list) --

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

    • NextToken (string) --

      A token to resume pagination.

class S3.Paginator.ListObjectsV2
paginator = client.get_paginator('list_objects_v2')
paginate(**kwargs)

Creates an iterator that will paginate through responses from S3.Client.list_objects_v2().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Bucket='string',
    Delimiter='string',
    EncodingType='url',
    Prefix='string',
    FetchOwner=True|False,
    StartAfter='string',
    RequestPayer='requester',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    Name of the bucket to list.

  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Encoding type used by Amazon S3 to encode object keys in the response.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • FetchOwner (boolean) -- The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true
  • StartAfter (string) -- StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. StartAfter can be any key in the bucket
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the list objects request in V2 style. Bucket owners need not specify this parameter in their requests.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'IsTruncated': True|False,
    'Contents': [
        {
            'Key': 'string',
            'LastModified': datetime(2015, 1, 1),
            'ETag': 'string',
            'Size': 123,
            'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'GLACIER'|'STANDARD_IA'|'ONEZONE_IA',
            'Owner': {
                'DisplayName': 'string',
                'ID': 'string'
            }
        },
    ],
    'Name': 'string',
    'Prefix': 'string',
    'Delimiter': 'string',
    'MaxKeys': 123,
    'CommonPrefixes': [
        {
            'Prefix': 'string'
        },
    ],
    'EncodingType': 'url',
    'KeyCount': 123,
    'ContinuationToken': 'string',
    'StartAfter': 'string',
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • IsTruncated (boolean) --

      A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.

    • Contents (list) --

      Metadata about each object returned.

      • (dict) --

        • Key (string) --

        • LastModified (datetime) --

        • ETag (string) --

        • Size (integer) --

        • StorageClass (string) --

          The class of storage used to store the object.

        • Owner (dict) --

          • DisplayName (string) --
          • ID (string) --
    • Name (string) --

      Name of the bucket to list.

    • Prefix (string) --

      Limits the response to keys that begin with the specified prefix.

    • Delimiter (string) --

      A delimiter is a character you use to group keys.

    • MaxKeys (integer) --

      Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.

    • CommonPrefixes (list) --

      CommonPrefixes contains all (if there are any) keys between Prefix and the next occurrence of the string specified by delimiter

      • (dict) --
        • Prefix (string) --
    • EncodingType (string) --

      Encoding type used by Amazon S3 to encode object keys in the response.

    • KeyCount (integer) --

      KeyCount is the number of keys returned with this request. KeyCount will always be less than equals to MaxKeys field. Say you ask for 50 keys, your result will include less than equals 50 keys

    • ContinuationToken (string) --

      ContinuationToken indicates Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key

    • StartAfter (string) --

      StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts listing after this specified key. StartAfter can be any key in the bucket

    • NextToken (string) --

      A token to resume pagination.

class S3.Paginator.ListParts
paginator = client.get_paginator('list_parts')
paginate(**kwargs)

Creates an iterator that will paginate through responses from S3.Client.list_parts().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Bucket='string',
    Key='string',
    UploadId='string',
    RequestPayer='requester',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • Key (string) -- [REQUIRED]
  • UploadId (string) --

    [REQUIRED]

    Upload ID identifying the multipart upload whose parts are being listed.

  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'AbortDate': datetime(2015, 1, 1),
    'AbortRuleId': 'string',
    'Bucket': 'string',
    'Key': 'string',
    'UploadId': 'string',
    'PartNumberMarker': 123,
    'MaxParts': 123,
    'IsTruncated': True|False,
    'Parts': [
        {
            'PartNumber': 123,
            'LastModified': datetime(2015, 1, 1),
            'ETag': 'string',
            'Size': 123
        },
    ],
    'Initiator': {
        'ID': 'string',
        'DisplayName': 'string'
    },
    'Owner': {
        'DisplayName': 'string',
        'ID': 'string'
    },
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester',
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • AbortDate (datetime) --

      Date when multipart upload will become eligible for abort operation by lifecycle.

    • AbortRuleId (string) --

      Id of the lifecycle rule that makes a multipart upload eligible for abort operation.

    • Bucket (string) --

      Name of the bucket to which the multipart upload was initiated.

    • Key (string) --

      Object key for which the multipart upload was initiated.

    • UploadId (string) --

      Upload ID identifying the multipart upload whose parts are being listed.

    • PartNumberMarker (integer) --

      Part number after which listing begins.

    • MaxParts (integer) --

      Maximum number of parts that were allowed in the response.

    • IsTruncated (boolean) --

      Indicates whether the returned list of parts is truncated.

    • Parts (list) --

      • (dict) --

        • PartNumber (integer) --

          Part number identifying the part. This is a positive integer between 1 and 10,000.

        • LastModified (datetime) --

          Date and time at which the part was uploaded.

        • ETag (string) --

          Entity tag returned when the part was uploaded.

        • Size (integer) --

          Size of the uploaded part data.

    • Initiator (dict) --

      Identifies who initiated the multipart upload.

      • ID (string) --

        If the principal is an AWS account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.

      • DisplayName (string) --

        Name of the Principal.

    • Owner (dict) --

      • DisplayName (string) --
      • ID (string) --
    • StorageClass (string) --

      The class of storage used to store the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • NextToken (string) --

      A token to resume pagination.

Waiters

The available waiters are:

class S3.Waiter.BucketExists
waiter = client.get_waiter('bucket_exists')
wait(**kwargs)

Polls S3.Client.head_bucket() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

waiter.wait(
    Bucket='string',
    WaiterConfig={
        'Delay': 123,
        'MaxAttempts': 123
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • WaiterConfig (dict) --

    A dictionary that provides parameters to control waiting behavior.

    • Delay (integer) --

      The amount of time in seconds to wait between attempts. Default: 5

    • MaxAttempts (integer) --

      The maximum number of attempts to be made. Default: 20

Returns

None

class S3.Waiter.BucketNotExists
waiter = client.get_waiter('bucket_not_exists')
wait(**kwargs)

Polls S3.Client.head_bucket() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

waiter.wait(
    Bucket='string',
    WaiterConfig={
        'Delay': 123,
        'MaxAttempts': 123
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • WaiterConfig (dict) --

    A dictionary that provides parameters to control waiting behavior.

    • Delay (integer) --

      The amount of time in seconds to wait between attempts. Default: 5

    • MaxAttempts (integer) --

      The maximum number of attempts to be made. Default: 20

Returns

None

class S3.Waiter.ObjectExists
waiter = client.get_waiter('object_exists')
wait(**kwargs)

Polls S3.Client.head_object() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

waiter.wait(
    Bucket='string',
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Key='string',
    Range='string',
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123,
    WaiterConfig={
        'Delay': 123,
        'MaxAttempts': 123
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Key (string) -- [REQUIRED]
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
  • WaiterConfig (dict) --

    A dictionary that provides parameters to control waiting behavior.

    • Delay (integer) --

      The amount of time in seconds to wait between attempts. Default: 5

    • MaxAttempts (integer) --

      The maximum number of attempts to be made. Default: 20

Returns

None

class S3.Waiter.ObjectNotExists
waiter = client.get_waiter('object_not_exists')
wait(**kwargs)

Polls S3.Client.head_object() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

waiter.wait(
    Bucket='string',
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Key='string',
    Range='string',
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123,
    WaiterConfig={
        'Delay': 123,
        'MaxAttempts': 123
    }
)
Parameters
  • Bucket (string) -- [REQUIRED]
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Key (string) -- [REQUIRED]
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
  • WaiterConfig (dict) --

    A dictionary that provides parameters to control waiting behavior.

    • Delay (integer) --

      The amount of time in seconds to wait between attempts. Default: 5

    • MaxAttempts (integer) --

      The maximum number of attempts to be made. Default: 20

Returns

None

Service Resource

class S3.ServiceResource

A resource representing Amazon Simple Storage Service (S3):

import boto3

s3 = boto3.resource('s3')

These are the resource's available actions:

These are the resource's available sub-resources:

These are the resource's available collections:

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

create_bucket(**kwargs)

Creates a new bucket.

See also: AWS API Documentation

Request Syntax

bucket = s3.create_bucket(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read',
    Bucket='string',
    CreateBucketConfiguration={
        'LocationConstraint': 'EU'|'eu-west-1'|'us-west-1'|'us-west-2'|'ap-south-1'|'ap-southeast-1'|'ap-southeast-2'|'ap-northeast-1'|'sa-east-1'|'cn-north-1'|'eu-central-1'
    },
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWrite='string',
    GrantWriteACP='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the bucket.
  • Bucket (string) -- [REQUIRED]
  • CreateBucketConfiguration (dict) --
    • LocationConstraint (string) --

      Specifies the region where the bucket will be created. If you don't specify a region, the bucket will be created in US Standard.

  • GrantFullControl (string) -- Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
  • GrantRead (string) -- Allows grantee to list the objects in the bucket.
  • GrantReadACP (string) -- Allows grantee to read the bucket ACL.
  • GrantWrite (string) -- Allows grantee to create, overwrite, and delete any object in the bucket.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable bucket.
Return type

s3.Bucket

Returns

Bucket resource

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket(name)

Creates a Bucket resource.:

bucket = s3.Bucket('name')
Parameters
name (string) -- The Bucket's name identifier. This must be set.
Return type
S3.Bucket
Returns
A Bucket resource
BucketAcl(bucket_name)

Creates a BucketAcl resource.:

bucket_acl = s3.BucketAcl('bucket_name')
Parameters
bucket_name (string) -- The BucketAcl's bucket_name identifier. This must be set.
Return type
S3.BucketAcl
Returns
A BucketAcl resource
BucketCors(bucket_name)

Creates a BucketCors resource.:

bucket_cors = s3.BucketCors('bucket_name')
Parameters
bucket_name (string) -- The BucketCors's bucket_name identifier. This must be set.
Return type
S3.BucketCors
Returns
A BucketCors resource
BucketLifecycle(bucket_name)

Creates a BucketLifecycle resource.:

bucket_lifecycle = s3.BucketLifecycle('bucket_name')
Parameters
bucket_name (string) -- The BucketLifecycle's bucket_name identifier. This must be set.
Return type
S3.BucketLifecycle
Returns
A BucketLifecycle resource
BucketLifecycleConfiguration(bucket_name)

Creates a BucketLifecycleConfiguration resource.:

bucket_lifecycle_configuration = s3.BucketLifecycleConfiguration('bucket_name')
Parameters
bucket_name (string) -- The BucketLifecycleConfiguration's bucket_name identifier. This must be set.
Return type
S3.BucketLifecycleConfiguration
Returns
A BucketLifecycleConfiguration resource
BucketLogging(bucket_name)

Creates a BucketLogging resource.:

bucket_logging = s3.BucketLogging('bucket_name')
Parameters
bucket_name (string) -- The BucketLogging's bucket_name identifier. This must be set.
Return type
S3.BucketLogging
Returns
A BucketLogging resource
BucketNotification(bucket_name)

Creates a BucketNotification resource.:

bucket_notification = s3.BucketNotification('bucket_name')
Parameters
bucket_name (string) -- The BucketNotification's bucket_name identifier. This must be set.
Return type
S3.BucketNotification
Returns
A BucketNotification resource
BucketPolicy(bucket_name)

Creates a BucketPolicy resource.:

bucket_policy = s3.BucketPolicy('bucket_name')
Parameters
bucket_name (string) -- The BucketPolicy's bucket_name identifier. This must be set.
Return type
S3.BucketPolicy
Returns
A BucketPolicy resource
BucketRequestPayment(bucket_name)

Creates a BucketRequestPayment resource.:

bucket_request_payment = s3.BucketRequestPayment('bucket_name')
Parameters
bucket_name (string) -- The BucketRequestPayment's bucket_name identifier. This must be set.
Return type
S3.BucketRequestPayment
Returns
A BucketRequestPayment resource
BucketTagging(bucket_name)

Creates a BucketTagging resource.:

bucket_tagging = s3.BucketTagging('bucket_name')
Parameters
bucket_name (string) -- The BucketTagging's bucket_name identifier. This must be set.
Return type
S3.BucketTagging
Returns
A BucketTagging resource
BucketVersioning(bucket_name)

Creates a BucketVersioning resource.:

bucket_versioning = s3.BucketVersioning('bucket_name')
Parameters
bucket_name (string) -- The BucketVersioning's bucket_name identifier. This must be set.
Return type
S3.BucketVersioning
Returns
A BucketVersioning resource
BucketWebsite(bucket_name)

Creates a BucketWebsite resource.:

bucket_website = s3.BucketWebsite('bucket_name')
Parameters
bucket_name (string) -- The BucketWebsite's bucket_name identifier. This must be set.
Return type
S3.BucketWebsite
Returns
A BucketWebsite resource
MultipartUpload(bucket_name, object_key, id)

Creates a MultipartUpload resource.:

multipart_upload = s3.MultipartUpload('bucket_name','object_key','id')
Parameters
  • bucket_name (string) -- The MultipartUpload's bucket_name identifier. This must be set.
  • object_key (string) -- The MultipartUpload's object_key identifier. This must be set.
  • id (string) -- The MultipartUpload's id identifier. This must be set.
Return type

S3.MultipartUpload

Returns

A MultipartUpload resource

MultipartUploadPart(bucket_name, object_key, multipart_upload_id, part_number)

Creates a MultipartUploadPart resource.:

multipart_upload_part = s3.MultipartUploadPart('bucket_name','object_key','multipart_upload_id','part_number')
Parameters
  • bucket_name (string) -- The MultipartUploadPart's bucket_name identifier. This must be set.
  • object_key (string) -- The MultipartUploadPart's object_key identifier. This must be set.
  • multipart_upload_id (string) -- The MultipartUploadPart's multipart_upload_id identifier. This must be set.
  • part_number (string) -- The MultipartUploadPart's part_number identifier. This must be set.
Return type

S3.MultipartUploadPart

Returns

A MultipartUploadPart resource

Object(bucket_name, key)

Creates a Object resource.:

object = s3.Object('bucket_name','key')
Parameters
  • bucket_name (string) -- The Object's bucket_name identifier. This must be set.
  • key (string) -- The Object's key identifier. This must be set.
Return type

S3.Object

Returns

A Object resource

ObjectAcl(bucket_name, object_key)

Creates a ObjectAcl resource.:

object_acl = s3.ObjectAcl('bucket_name','object_key')
Parameters
  • bucket_name (string) -- The ObjectAcl's bucket_name identifier. This must be set.
  • object_key (string) -- The ObjectAcl's object_key identifier. This must be set.
Return type

S3.ObjectAcl

Returns

A ObjectAcl resource

ObjectSummary(bucket_name, key)

Creates a ObjectSummary resource.:

object_summary = s3.ObjectSummary('bucket_name','key')
Parameters
  • bucket_name (string) -- The ObjectSummary's bucket_name identifier. This must be set.
  • key (string) -- The ObjectSummary's key identifier. This must be set.
Return type

S3.ObjectSummary

Returns

A ObjectSummary resource

ObjectVersion(bucket_name, object_key, id)

Creates a ObjectVersion resource.:

object_version = s3.ObjectVersion('bucket_name','object_key','id')
Parameters
  • bucket_name (string) -- The ObjectVersion's bucket_name identifier. This must be set.
  • object_key (string) -- The ObjectVersion's object_key identifier. This must be set.
  • id (string) -- The ObjectVersion's id identifier. This must be set.
Return type

S3.ObjectVersion

Returns

A ObjectVersion resource

Collections

Collections provide an interface to iterate over and manipulate groups of resources. For more information about collections refer to the Resources Introduction Guide.

buckets

A collection of Bucket resources

all()

Creates an iterable of all Bucket resources in the collection.

See also: AWS API Documentation

Request Syntax

bucket_iterator = s3.buckets.all()
Return type
list(s3.Bucket)
Returns
A list of Bucket resources
filter()

Creates an iterable of all Bucket resources in the collection filtered by kwargs passed to method.

See also: AWS API Documentation

Request Syntax

bucket_iterator = s3.buckets.filter()
Return type
list(s3.Bucket)
Returns
A list of Bucket resources
limit(**kwargs)

Creates an iterable up to a specified amount of Bucket resources in the collection.

See also: AWS API Documentation

Request Syntax

bucket_iterator = s3.buckets.limit()
Return type
list(s3.Bucket)
Returns
A list of Bucket resources
page_size(**kwargs)

Creates an iterable of all Bucket resources in the collection, but limits the number of items returned by each service call by the specified amount.

See also: AWS API Documentation

Request Syntax

bucket_iterator = s3.buckets.page_size()
Return type
list(s3.Bucket)
Returns
A list of Bucket resources

Bucket

class S3.Bucket(name)

A resource representing an Amazon Simple Storage Service (S3) Bucket:

import boto3

s3 = boto3.resource('s3')
bucket = s3.Bucket('name')
Parameters
name (string) -- The Bucket's name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

These are the resource's available collections:

These are the resource's available waiters:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

name

(string) The Bucket's name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

creation_date
  • (datetime) --

    Date the bucket was created.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

copy(CopySource, Key, ExtraArgs=None, Callback=None, SourceClient=None, Config=None)

Copy an object from one S3 location to an object in this bucket.

This is a managed transfer which will perform a multipart copy in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.resource('s3')
copy_source = {
    'Bucket': 'mybucket',
    'Key': 'mykey'
}
bucket = s3.Bucket('otherbucket')
bucket.copy(copy_source, 'otherkey')
Parameters
  • CopySource (dict) -- The name of the source bucket, key name of the source object, and optional version ID of the source object. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • Key (str) -- The name of the key to copy to
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the copy.
  • SourceClient (botocore or boto3 Client) -- The client to be used for operation that may happen at the source object. For example, this client is used for the head_object that determines the size of the copy. If no client is provided, the current client is used as the client for the source object.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the copy.
create(**kwargs)

Creates a new bucket.

See also: AWS API Documentation

Request Syntax

response = bucket.create(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read',
    CreateBucketConfiguration={
        'LocationConstraint': 'EU'|'eu-west-1'|'us-west-1'|'us-west-2'|'ap-south-1'|'ap-southeast-1'|'ap-southeast-2'|'ap-northeast-1'|'sa-east-1'|'cn-north-1'|'eu-central-1'
    },
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWrite='string',
    GrantWriteACP='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the bucket.
  • CreateBucketConfiguration (dict) --
    • LocationConstraint (string) --

      Specifies the region where the bucket will be created. If you don't specify a region, the bucket will be created in US Standard.

  • GrantFullControl (string) -- Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
  • GrantRead (string) -- Allows grantee to list the objects in the bucket.
  • GrantReadACP (string) -- Allows grantee to read the bucket ACL.
  • GrantWrite (string) -- Allows grantee to create, overwrite, and delete any object in the bucket.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable bucket.
Return type

dict

Returns

Response Syntax

{
    'Location': 'string'
}

Response Structure

  • (dict) --
    • Location (string) --

delete()

Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted.

See also: AWS API Documentation

Request Syntax

response = bucket.delete()
Returns
None
delete_objects(**kwargs)

This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.

See also: AWS API Documentation

Request Syntax

response = bucket.delete_objects(
    Delete={
        'Objects': [
            {
                'Key': 'string',
                'VersionId': 'string'
            },
        ],
        'Quiet': True|False
    },
    MFA='string',
    RequestPayer='requester'
)
Parameters
  • Delete (dict) --

    [REQUIRED]

    • Objects (list) -- [REQUIRED]
      • (dict) --
        • Key (string) -- [REQUIRED]

          Key name of the object to delete.

        • VersionId (string) --

          VersionId for the specific version of the object to delete.

    • Quiet (boolean) --

      Element to enable quiet mode for the request. When you add this element, you must set its value to true.

  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'Deleted': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'DeleteMarker': True|False,
            'DeleteMarkerVersionId': 'string'
        },
    ],
    'RequestCharged': 'requester',
    'Errors': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'Code': 'string',
            'Message': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • Deleted (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • DeleteMarker (boolean) --
        • DeleteMarkerVersionId (string) --
    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • Errors (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • Code (string) --
        • Message (string) --

download_file(Key, Filename, ExtraArgs=None, Callback=None, Config=None)

Download an S3 object to a file.

Usage:

import boto3
s3 = boto3.resource('s3')
s3.Bucket('mybucket').download_file('hello.txt', '/tmp/hello.txt')

Similar behavior as S3Transfer's download_file() method, except that parameters are capitalized. Detailed examples can be found at S3Transfer's Usage.

Parameters
  • Filename (str) -- The path to the file to download to.
  • Key (str) -- The name of the key to download from.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the download.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the transfer.
download_fileobj(Key, Fileobj, ExtraArgs=None, Callback=None, Config=None)

Download an object from this bucket to a file-like-object.

The file-like object must be in binary mode.

This is a managed transfer which will perform a multipart download in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.resource('s3')
bucket = s3.Bucket('mybucket')

with open('filename', 'wb') as data:
    bucket.download_fileobj('mykey', data)
Parameters
  • Fileobj (a file-like object) -- A file-like object to download into. At a minimum, it must implement the write method and must accept bytes.
  • Key (str) -- The name of the key to download from.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the download.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the download.
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load(*args, **kwargs)

Calls s3.Client.list_buckets() to update the attributes of the Bucket resource.

put_object(**kwargs)

Adds an object to a bucket.

See also: AWS API Documentation

Request Syntax

object = bucket.put_object(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    Body=b'bytes'|file,
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentLength=123,
    ContentMD5='string',
    ContentType='string',
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Key='string',
    Metadata={
        'string': 'string'
    },
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • Body (bytes or seekable file-like object) -- Object data.
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentLength (integer) -- Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
  • ContentMD5 (string) -- The base64-encoded 128-bit MD5 digest of the part data.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Key (string) --

    [REQUIRED]

    Object key for which the PUT operation was initiated.

  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object. The tag-set must be encoded as URL Query parameters
Return type

s3.Object

Returns

Object resource

upload_file(Filename, Key, ExtraArgs=None, Callback=None, Config=None)

Upload a file to an S3 object.

Usage:

import boto3
s3 = boto3.resource('s3')
s3.Bucket('mybucket').upload_file('/tmp/hello.txt', 'hello.txt')

Similar behavior as S3Transfer's upload_file() method, except that parameters are capitalized. Detailed examples can be found at S3Transfer's Usage.

Parameters
  • Filename (str) -- The path to the file to upload.
  • Key (str) -- The name of the key to upload to.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the upload.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the transfer.
upload_fileobj(Fileobj, Key, ExtraArgs=None, Callback=None, Config=None)

Upload a file-like object to this bucket.

The file-like object must be in binary mode.

This is a managed transfer which will perform a multipart upload in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.resource('s3')
bucket = s3.Bucket('mybucket')

with open('filename', 'rb') as data:
    bucket.upload_fileobj(data, 'mykey')
Parameters
  • Fileobj (a file-like object) -- A file-like object to upload. At a minimum, it must implement the read method, and must return bytes.
  • Key (str) -- The name of the key to upload to.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the upload.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the upload.

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Acl()

Creates a BucketAcl resource.:

bucket_acl = bucket.Acl()
Return type
S3.BucketAcl
Returns
A BucketAcl resource
Cors()

Creates a BucketCors resource.:

bucket_cors = bucket.Cors()
Return type
S3.BucketCors
Returns
A BucketCors resource
Lifecycle()

Creates a BucketLifecycle resource.:

bucket_lifecycle = bucket.Lifecycle()
Return type
S3.BucketLifecycle
Returns
A BucketLifecycle resource
LifecycleConfiguration()

Creates a BucketLifecycleConfiguration resource.:

bucket_lifecycle_configuration = bucket.LifecycleConfiguration()
Return type
S3.BucketLifecycleConfiguration
Returns
A BucketLifecycleConfiguration resource
Logging()

Creates a BucketLogging resource.:

bucket_logging = bucket.Logging()
Return type
S3.BucketLogging
Returns
A BucketLogging resource
Notification()

Creates a BucketNotification resource.:

bucket_notification = bucket.Notification()
Return type
S3.BucketNotification
Returns
A BucketNotification resource
Object(key)

Creates a Object resource.:

object = bucket.Object('key')
Parameters
key (string) -- The Object's key identifier. This must be set.
Return type
S3.Object
Returns
A Object resource
Policy()

Creates a BucketPolicy resource.:

bucket_policy = bucket.Policy()
Return type
S3.BucketPolicy
Returns
A BucketPolicy resource
RequestPayment()

Creates a BucketRequestPayment resource.:

bucket_request_payment = bucket.RequestPayment()
Return type
S3.BucketRequestPayment
Returns
A BucketRequestPayment resource
Tagging()

Creates a BucketTagging resource.:

bucket_tagging = bucket.Tagging()
Return type
S3.BucketTagging
Returns
A BucketTagging resource
Versioning()

Creates a BucketVersioning resource.:

bucket_versioning = bucket.Versioning()
Return type
S3.BucketVersioning
Returns
A BucketVersioning resource
Website()

Creates a BucketWebsite resource.:

bucket_website = bucket.Website()
Return type
S3.BucketWebsite
Returns
A BucketWebsite resource

Collections

Collections provide an interface to iterate over and manipulate groups of resources. For more information about collections refer to the Resources Introduction Guide.

multipart_uploads

A collection of MultipartUpload resources

all()

Creates an iterable of all MultipartUpload resources in the collection.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = bucket.multipart_uploads.all()
Return type
list(s3.MultipartUpload)
Returns
A list of MultipartUpload resources
filter(**kwargs)

Creates an iterable of all MultipartUpload resources in the collection filtered by kwargs passed to method.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = bucket.multipart_uploads.filter(
    Delimiter='string',
    EncodingType='url',
    KeyMarker='string',
    MaxUploads=123,
    Prefix='string',
    UploadIdMarker='string'
)
Parameters
  • Delimiter (string) -- Character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • KeyMarker (string) -- Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.
  • MaxUploads (integer) -- Sets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response.
  • Prefix (string) -- Lists in-progress uploads only for those keys that begin with the specified prefix.
  • UploadIdMarker (string) -- Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored.
Return type

list(s3.MultipartUpload)

Returns

A list of MultipartUpload resources

limit(**kwargs)

Creates an iterable up to a specified amount of MultipartUpload resources in the collection.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = bucket.multipart_uploads.limit(
    count=123
)
Parameters
count (integer) -- The limit to the number of resources in the iterable.
Return type
list(s3.MultipartUpload)
Returns
A list of MultipartUpload resources
page_size(**kwargs)

Creates an iterable of all MultipartUpload resources in the collection, but limits the number of items returned by each service call by the specified amount.

See also: AWS API Documentation

Request Syntax

multipart_upload_iterator = bucket.multipart_uploads.page_size(
    count=123
)
Parameters
count (integer) -- The number of items returned by each service call
Return type
list(s3.MultipartUpload)
Returns
A list of MultipartUpload resources
object_versions

A collection of ObjectVersion resources

all()

Creates an iterable of all ObjectVersion resources in the collection.

See also: AWS API Documentation

Request Syntax

object_version_iterator = bucket.object_versions.all()
Return type
list(s3.ObjectVersion)
Returns
A list of ObjectVersion resources
delete(**kwargs)

This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.

See also: AWS API Documentation

Request Syntax

response = bucket.object_versions.delete(
    MFA='string',
    RequestPayer='requester'
)
Parameters
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'Deleted': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'DeleteMarker': True|False,
            'DeleteMarkerVersionId': 'string'
        },
    ],
    'RequestCharged': 'requester',
    'Errors': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'Code': 'string',
            'Message': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • Deleted (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • DeleteMarker (boolean) --
        • DeleteMarkerVersionId (string) --
    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • Errors (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • Code (string) --
        • Message (string) --

filter(**kwargs)

Creates an iterable of all ObjectVersion resources in the collection filtered by kwargs passed to method.

See also: AWS API Documentation

Request Syntax

object_version_iterator = bucket.object_versions.filter(
    Delimiter='string',
    EncodingType='url',
    KeyMarker='string',
    MaxKeys=123,
    Prefix='string',
    VersionIdMarker='string'
)
Parameters
  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • KeyMarker (string) -- Specifies the key to start with when listing objects in a bucket.
  • MaxKeys (integer) -- Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • VersionIdMarker (string) -- Specifies the object version you want to start listing from.
Return type

list(s3.ObjectVersion)

Returns

A list of ObjectVersion resources

limit(**kwargs)

Creates an iterable up to a specified amount of ObjectVersion resources in the collection.

See also: AWS API Documentation

Request Syntax

object_version_iterator = bucket.object_versions.limit(
    count=123
)
Parameters
count (integer) -- The limit to the number of resources in the iterable.
Return type
list(s3.ObjectVersion)
Returns
A list of ObjectVersion resources
page_size(**kwargs)

Creates an iterable of all ObjectVersion resources in the collection, but limits the number of items returned by each service call by the specified amount.

See also: AWS API Documentation

Request Syntax

object_version_iterator = bucket.object_versions.page_size(
    count=123
)
Parameters
count (integer) -- The number of items returned by each service call
Return type
list(s3.ObjectVersion)
Returns
A list of ObjectVersion resources
objects

A collection of ObjectSummary resources

all()

Creates an iterable of all ObjectSummary resources in the collection.

See also: AWS API Documentation

Request Syntax

object_summary_iterator = bucket.objects.all()
Return type
list(s3.ObjectSummary)
Returns
A list of ObjectSummary resources
delete(**kwargs)

This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.

See also: AWS API Documentation

Request Syntax

response = bucket.objects.delete(
    MFA='string',
    RequestPayer='requester'
)
Parameters
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'Deleted': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'DeleteMarker': True|False,
            'DeleteMarkerVersionId': 'string'
        },
    ],
    'RequestCharged': 'requester',
    'Errors': [
        {
            'Key': 'string',
            'VersionId': 'string',
            'Code': 'string',
            'Message': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • Deleted (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • DeleteMarker (boolean) --
        • DeleteMarkerVersionId (string) --
    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • Errors (list) --

      • (dict) --
        • Key (string) --
        • VersionId (string) --
        • Code (string) --
        • Message (string) --

filter(**kwargs)

Creates an iterable of all ObjectSummary resources in the collection filtered by kwargs passed to method.

See also: AWS API Documentation

Request Syntax

object_summary_iterator = bucket.objects.filter(
    Delimiter='string',
    EncodingType='url',
    Marker='string',
    MaxKeys=123,
    Prefix='string',
    RequestPayer='requester'
)
Parameters
  • Delimiter (string) -- A delimiter is a character you use to group keys.
  • EncodingType (string) -- Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.
  • Marker (string) -- Specifies the key to start with when listing objects in a bucket.
  • MaxKeys (integer) -- Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.
  • Prefix (string) -- Limits the response to keys that begin with the specified prefix.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the list objects request. Bucket owners need not specify this parameter in their requests.
Return type

list(s3.ObjectSummary)

Returns

A list of ObjectSummary resources

limit(**kwargs)

Creates an iterable up to a specified amount of ObjectSummary resources in the collection.

See also: AWS API Documentation

Request Syntax

object_summary_iterator = bucket.objects.limit(
    count=123
)
Parameters
count (integer) -- The limit to the number of resources in the iterable.
Return type
list(s3.ObjectSummary)
Returns
A list of ObjectSummary resources
page_size(**kwargs)

Creates an iterable of all ObjectSummary resources in the collection, but limits the number of items returned by each service call by the specified amount.

See also: AWS API Documentation

Request Syntax

object_summary_iterator = bucket.objects.page_size(
    count=123
)
Parameters
count (integer) -- The number of items returned by each service call
Return type
list(s3.ObjectSummary)
Returns
A list of ObjectSummary resources

Waiters

Waiters provide an interface to wait for a resource to reach a specific state. For more information about waiters refer to the Resources Introduction Guide.

wait_until_exists()

Waits until this Bucket is exists. This method calls S3.Waiter.bucket_exists.wait() which polls. S3.Client.head_bucket() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

bucket.wait_until_exists()
Returns
None
wait_until_not_exists()

Waits until this Bucket is not exists. This method calls S3.Waiter.bucket_not_exists.wait() which polls. S3.Client.head_bucket() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

bucket.wait_until_not_exists()
Returns
None

BucketAcl

class S3.BucketAcl(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketAcl:

import boto3

s3 = boto3.resource('s3')
bucket_acl = s3.BucketAcl('bucket_name')
Parameters
bucket_name (string) -- The BucketAcl's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketAcl's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

grants
  • (list) --

    A list of grants.

    • (dict) --

      • Grantee (dict) --

        • DisplayName (string) --

          Screen name of the grantee.

        • EmailAddress (string) --

          Email address of the grantee.

        • ID (string) --

          The canonical user ID of the grantee.

        • Type (string) --

          Type of grantee

        • URI (string) --

          URI of the grantee group.

      • Permission (string) --

        Specifies the permission given to the grantee.

owner
  • (dict) --
    • DisplayName (string) --
    • ID (string) --

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_acl() to update the attributes of the BucketAcl resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_acl.load()
Returns
None
put(**kwargs)

Sets the permissions on a bucket using access control lists (ACL).

See also: AWS API Documentation

Request Syntax

response = bucket_acl.put(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read',
    AccessControlPolicy={
        'Grants': [
            {
                'Grantee': {
                    'DisplayName': 'string',
                    'EmailAddress': 'string',
                    'ID': 'string',
                    'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                    'URI': 'string'
                },
                'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
            },
        ],
        'Owner': {
            'DisplayName': 'string',
            'ID': 'string'
        }
    },
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWrite='string',
    GrantWriteACP='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the bucket.
  • AccessControlPolicy (dict) --
    • Grants (list) --

      A list of grants.

      • (dict) --
        • Grantee (dict) --
          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) -- [REQUIRED]

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Specifies the permission given to the grantee.

    • Owner (dict) --
      • DisplayName (string) --
      • ID (string) --
  • GrantFullControl (string) -- Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
  • GrantRead (string) -- Allows grantee to list the objects in the bucket.
  • GrantReadACP (string) -- Allows grantee to read the bucket ACL.
  • GrantWrite (string) -- Allows grantee to create, overwrite, and delete any object in the bucket.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable bucket.
Returns

None

reload()

Calls S3.Client.get_bucket_acl() to update the attributes of the BucketAcl resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_acl.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_acl.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketCors

class S3.BucketCors(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketCors:

import boto3

s3 = boto3.resource('s3')
bucket_cors = s3.BucketCors('bucket_name')
Parameters
bucket_name (string) -- The BucketCors's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketCors's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

cors_rules
  • (list) --

    • (dict) --

      • AllowedHeaders (list) --

        Specifies which headers are allowed in a pre-flight OPTIONS request.

        • (string) --
      • AllowedMethods (list) --

        Identifies HTTP methods that the domain/origin specified in the rule is allowed to execute.

        • (string) --
      • AllowedOrigins (list) --

        One or more origins you want customers to be able to access the bucket from.

        • (string) --
      • ExposeHeaders (list) --

        One or more headers in the response that you want customers to be able to access from their applications (for example, from a JavaScript XMLHttpRequest object).

        • (string) --
      • MaxAgeSeconds (integer) --

        The time in seconds that your browser is to cache the preflight response for the specified resource.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

delete()

Deletes the cors configuration information set for the bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_cors.delete()
Returns
None
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_cors() to update the attributes of the BucketCors resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_cors.load()
Returns
None
put(**kwargs)

Sets the cors configuration for a bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_cors.put(
    CORSConfiguration={
        'CORSRules': [
            {
                'AllowedHeaders': [
                    'string',
                ],
                'AllowedMethods': [
                    'string',
                ],
                'AllowedOrigins': [
                    'string',
                ],
                'ExposeHeaders': [
                    'string',
                ],
                'MaxAgeSeconds': 123
            },
        ]
    },

)
Parameters
CORSConfiguration (dict) --

[REQUIRED]

  • CORSRules (list) -- [REQUIRED]
    • (dict) --
      • AllowedHeaders (list) --

        Specifies which headers are allowed in a pre-flight OPTIONS request.

        • (string) --
      • AllowedMethods (list) -- [REQUIRED]

        Identifies HTTP methods that the domain/origin specified in the rule is allowed to execute.

        • (string) --
      • AllowedOrigins (list) -- [REQUIRED]

        One or more origins you want customers to be able to access the bucket from.

        • (string) --
      • ExposeHeaders (list) --

        One or more headers in the response that you want customers to be able to access from their applications (for example, from a JavaScript XMLHttpRequest object).

        • (string) --
      • MaxAgeSeconds (integer) --

        The time in seconds that your browser is to cache the preflight response for the specified resource.

Returns
None
reload()

Calls S3.Client.get_bucket_cors() to update the attributes of the BucketCors resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_cors.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_cors.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketLifecycle

class S3.BucketLifecycle(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketLifecycle:

import boto3

s3 = boto3.resource('s3')
bucket_lifecycle = s3.BucketLifecycle('bucket_name')
Parameters
bucket_name (string) -- The BucketLifecycle's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketLifecycle's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

rules
  • (list) --

    • (dict) --

      • Expiration (dict) --

        • Date (datetime) --

          Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

        • Days (integer) --

          Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

        • ExpiredObjectDeleteMarker (boolean) --

          Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

      • ID (string) --

        Unique identifier for the rule. The value cannot be longer than 255 characters.

      • Prefix (string) --

        Prefix identifying one or more objects to which the rule applies.

      • Status (string) --

        If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

      • Transition (dict) --

        • Date (datetime) --

          Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

        • Days (integer) --

          Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

        • StorageClass (string) --

          The class of storage used to store the object.

      • NoncurrentVersionTransition (dict) --

        Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

        • NoncurrentDays (integer) --

          Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

        • StorageClass (string) --

          The class of storage used to store the object.

      • NoncurrentVersionExpiration (dict) --

        Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

        • NoncurrentDays (integer) --

          Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

      • AbortIncompleteMultipartUpload (dict) --

        Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

        • DaysAfterInitiation (integer) --

          Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

delete()

Deletes the lifecycle configuration from the bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_lifecycle.delete()
Returns
None
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_lifecycle() to update the attributes of the BucketLifecycle resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_lifecycle.load()
Returns
None
put(**kwargs)

Deprecated, see the PutBucketLifecycleConfiguration operation.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = bucket_lifecycle.put(
    LifecycleConfiguration={
        'Rules': [
            {
                'Expiration': {
                    'Date': datetime(2015, 1, 1),
                    'Days': 123,
                    'ExpiredObjectDeleteMarker': True|False
                },
                'ID': 'string',
                'Prefix': 'string',
                'Status': 'Enabled'|'Disabled',
                'Transition': {
                    'Date': datetime(2015, 1, 1),
                    'Days': 123,
                    'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                },
                'NoncurrentVersionTransition': {
                    'NoncurrentDays': 123,
                    'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                },
                'NoncurrentVersionExpiration': {
                    'NoncurrentDays': 123
                },
                'AbortIncompleteMultipartUpload': {
                    'DaysAfterInitiation': 123
                }
            },
        ]
    }
)
Parameters
LifecycleConfiguration (dict) --
  • Rules (list) -- [REQUIRED]
    • (dict) --
      • Expiration (dict) --
        • Date (datetime) --

          Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

        • Days (integer) --

          Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

        • ExpiredObjectDeleteMarker (boolean) --

          Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

      • ID (string) --

        Unique identifier for the rule. The value cannot be longer than 255 characters.

      • Prefix (string) -- [REQUIRED]

        Prefix identifying one or more objects to which the rule applies.

      • Status (string) -- [REQUIRED]

        If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

      • Transition (dict) --
        • Date (datetime) --

          Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

        • Days (integer) --

          Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

        • StorageClass (string) --

          The class of storage used to store the object.

      • NoncurrentVersionTransition (dict) --

        Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

        • NoncurrentDays (integer) --

          Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

        • StorageClass (string) --

          The class of storage used to store the object.

      • NoncurrentVersionExpiration (dict) --

        Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

        • NoncurrentDays (integer) --

          Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

      • AbortIncompleteMultipartUpload (dict) --

        Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

        • DaysAfterInitiation (integer) --

          Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

Returns
None
reload()

Calls S3.Client.get_bucket_lifecycle() to update the attributes of the BucketLifecycle resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_lifecycle.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_lifecycle.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketLifecycleConfiguration

class S3.BucketLifecycleConfiguration(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketLifecycleConfiguration:

import boto3

s3 = boto3.resource('s3')
bucket_lifecycle_configuration = s3.BucketLifecycleConfiguration('bucket_name')
Parameters
bucket_name (string) -- The BucketLifecycleConfiguration's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketLifecycleConfiguration's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

rules
  • (list) --

    • (dict) --

      • Expiration (dict) --

        • Date (datetime) --

          Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

        • Days (integer) --

          Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

        • ExpiredObjectDeleteMarker (boolean) --

          Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

      • ID (string) --

        Unique identifier for the rule. The value cannot be longer than 255 characters.

      • Prefix (string) --

        Prefix identifying one or more objects to which the rule applies. This is deprecated; use Filter instead.

      • Filter (dict) --

        The Filter is used to identify objects that a Lifecycle Rule applies to. A Filter must have exactly one of Prefix, Tag, or And specified.

        • Prefix (string) --

          Prefix identifying one or more objects to which the rule applies.

        • Tag (dict) --

          This tag must exist in the object's tag set in order for the rule to apply.

          • Key (string) --

            Name of the tag.

          • Value (string) --

            Value of the tag.

        • And (dict) --

          This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates. The Lifecycle Rule will apply to any object matching all of the predicates configured inside the And operator.

          • Prefix (string) --

          • Tags (list) --

            All of these tags must exist in the object's tag set in order for the rule to apply.

            • (dict) --

              • Key (string) --

                Name of the tag.

              • Value (string) --

                Value of the tag.

      • Status (string) --

        If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

      • Transitions (list) --

        • (dict) --

          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • StorageClass (string) --

            The class of storage used to store the object.

      • NoncurrentVersionTransitions (list) --

        • (dict) --

          Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

          • StorageClass (string) --

            The class of storage used to store the object.

      • NoncurrentVersionExpiration (dict) --

        Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

        • NoncurrentDays (integer) --

          Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

      • AbortIncompleteMultipartUpload (dict) --

        Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

        • DaysAfterInitiation (integer) --

          Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

delete()

Deletes the lifecycle configuration from the bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_lifecycle_configuration.delete()
Returns
None
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_lifecycle_configuration() to update the attributes of the BucketLifecycleConfiguration resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_lifecycle_configuration.load()
Returns
None
put(**kwargs)

Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it.

See also: AWS API Documentation

Request Syntax

response = bucket_lifecycle_configuration.put(
    LifecycleConfiguration={
        'Rules': [
            {
                'Expiration': {
                    'Date': datetime(2015, 1, 1),
                    'Days': 123,
                    'ExpiredObjectDeleteMarker': True|False
                },
                'ID': 'string',
                'Prefix': 'string',
                'Filter': {
                    'Prefix': 'string',
                    'Tag': {
                        'Key': 'string',
                        'Value': 'string'
                    },
                    'And': {
                        'Prefix': 'string',
                        'Tags': [
                            {
                                'Key': 'string',
                                'Value': 'string'
                            },
                        ]
                    }
                },
                'Status': 'Enabled'|'Disabled',
                'Transitions': [
                    {
                        'Date': datetime(2015, 1, 1),
                        'Days': 123,
                        'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                    },
                ],
                'NoncurrentVersionTransitions': [
                    {
                        'NoncurrentDays': 123,
                        'StorageClass': 'GLACIER'|'STANDARD_IA'|'ONEZONE_IA'
                    },
                ],
                'NoncurrentVersionExpiration': {
                    'NoncurrentDays': 123
                },
                'AbortIncompleteMultipartUpload': {
                    'DaysAfterInitiation': 123
                }
            },
        ]
    }
)
Parameters
LifecycleConfiguration (dict) --
  • Rules (list) -- [REQUIRED]
    • (dict) --
      • Expiration (dict) --
        • Date (datetime) --

          Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

        • Days (integer) --

          Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

        • ExpiredObjectDeleteMarker (boolean) --

          Indicates whether Amazon S3 will remove a delete marker with no noncurrent versions. If set to true, the delete marker will be expired; if set to false the policy takes no action. This cannot be specified with Days or Date in a Lifecycle Expiration Policy.

      • ID (string) --

        Unique identifier for the rule. The value cannot be longer than 255 characters.

      • Prefix (string) --

        Prefix identifying one or more objects to which the rule applies. This is deprecated; use Filter instead.

      • Filter (dict) --

        The Filter is used to identify objects that a Lifecycle Rule applies to. A Filter must have exactly one of Prefix, Tag, or And specified.

        • Prefix (string) --

          Prefix identifying one or more objects to which the rule applies.

        • Tag (dict) --

          This tag must exist in the object's tag set in order for the rule to apply.

          • Key (string) -- [REQUIRED]

            Name of the tag.

          • Value (string) -- [REQUIRED]

            Value of the tag.

        • And (dict) --

          This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates. The Lifecycle Rule will apply to any object matching all of the predicates configured inside the And operator.

          • Prefix (string) --
          • Tags (list) --

            All of these tags must exist in the object's tag set in order for the rule to apply.

            • (dict) --
              • Key (string) -- [REQUIRED]

                Name of the tag.

              • Value (string) -- [REQUIRED]

                Value of the tag.

      • Status (string) -- [REQUIRED]

        If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied.

      • Transitions (list) --
        • (dict) --
          • Date (datetime) --

            Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.

          • Days (integer) --

            Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.

          • StorageClass (string) --

            The class of storage used to store the object.

      • NoncurrentVersionTransitions (list) --
        • (dict) --

          Container for the transition rule that describes when noncurrent objects transition to the STANDARD_IA, ONEZONE_IA or GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA, ONEZONE_IA or GLACIER storage class at a specific period in the object's lifetime.

          • NoncurrentDays (integer) --

            Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

          • StorageClass (string) --

            The class of storage used to store the object.

      • NoncurrentVersionExpiration (dict) --

        Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.

        • NoncurrentDays (integer) --

          Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates When an Object Became Noncurrent in the Amazon Simple Storage Service Developer Guide.

      • AbortIncompleteMultipartUpload (dict) --

        Specifies the days since the initiation of an Incomplete Multipart Upload that Lifecycle will wait before permanently removing all parts of the upload.

        • DaysAfterInitiation (integer) --

          Indicates the number of days that must pass since initiation for Lifecycle to abort an Incomplete Multipart Upload.

Returns
None
reload()

Calls S3.Client.get_bucket_lifecycle_configuration() to update the attributes of the BucketLifecycleConfiguration resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_lifecycle_configuration.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_lifecycle_configuration.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketLogging

class S3.BucketLogging(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketLogging:

import boto3

s3 = boto3.resource('s3')
bucket_logging = s3.BucketLogging('bucket_name')
Parameters
bucket_name (string) -- The BucketLogging's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketLogging's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

logging_enabled
  • (dict) --

    Container for logging information. Presence of this element indicates that logging is enabled. Parameters TargetBucket and TargetPrefix are required in this case.

    • TargetBucket (string) --

      Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case you should choose a different TargetPrefix for each source bucket so that the delivered log files can be distinguished by key.

    • TargetGrants (list) --

      • (dict) --

        • Grantee (dict) --

          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) --

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Logging permissions assigned to the Grantee for the bucket.

    • TargetPrefix (string) --

      This element lets you specify a prefix for the keys that the log files will be stored under.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_logging() to update the attributes of the BucketLogging resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_logging.load()
Returns
None
put(**kwargs)

Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner.

See also: AWS API Documentation

Request Syntax

response = bucket_logging.put(
    BucketLoggingStatus={
        'LoggingEnabled': {
            'TargetBucket': 'string',
            'TargetGrants': [
                {
                    'Grantee': {
                        'DisplayName': 'string',
                        'EmailAddress': 'string',
                        'ID': 'string',
                        'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                        'URI': 'string'
                    },
                    'Permission': 'FULL_CONTROL'|'READ'|'WRITE'
                },
            ],
            'TargetPrefix': 'string'
        }
    },

)
Parameters
BucketLoggingStatus (dict) --

[REQUIRED]

  • LoggingEnabled (dict) --

    Container for logging information. Presence of this element indicates that logging is enabled. Parameters TargetBucket and TargetPrefix are required in this case.

    • TargetBucket (string) -- [REQUIRED]

      Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case you should choose a different TargetPrefix for each source bucket so that the delivered log files can be distinguished by key.

    • TargetGrants (list) --
      • (dict) --
        • Grantee (dict) --
          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) -- [REQUIRED]

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Logging permissions assigned to the Grantee for the bucket.

    • TargetPrefix (string) -- [REQUIRED]

      This element lets you specify a prefix for the keys that the log files will be stored under.

Returns
None
reload()

Calls S3.Client.get_bucket_logging() to update the attributes of the BucketLogging resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_logging.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_logging.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketNotification

class S3.BucketNotification(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketNotification:

import boto3

s3 = boto3.resource('s3')
bucket_notification = s3.BucketNotification('bucket_name')
Parameters
bucket_name (string) -- The BucketNotification's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketNotification's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

lambda_function_configurations
  • (list) --

    • (dict) --

      Container for specifying the AWS Lambda notification configuration.

      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • LambdaFunctionArn (string) --

        Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.

      • Events (list) --

        • (string) --

          Bucket event for which to send notifications.

      • Filter (dict) --

        Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

        • Key (dict) --

          Container for object key name prefix and suffix filtering rules.

          • FilterRules (list) --

            A list of containers for key value pair that defines the criteria for the filter rule.

            • (dict) --

              Container for key value pair that defines the criteria for the filter rule.

              • Name (string) --

                Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

              • Value (string) --

queue_configurations
  • (list) --

    • (dict) --

      Container for specifying an configuration when you want Amazon S3 to publish events to an Amazon Simple Queue Service (Amazon SQS) queue.

      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • QueueArn (string) --

        Amazon SQS queue ARN to which Amazon S3 will publish a message when it detects events of specified type.

      • Events (list) --

        • (string) --

          Bucket event for which to send notifications.

      • Filter (dict) --

        Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

        • Key (dict) --

          Container for object key name prefix and suffix filtering rules.

          • FilterRules (list) --

            A list of containers for key value pair that defines the criteria for the filter rule.

            • (dict) --

              Container for key value pair that defines the criteria for the filter rule.

              • Name (string) --

                Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

              • Value (string) --

topic_configurations
  • (list) --

    • (dict) --

      Container for specifying the configuration when you want Amazon S3 to publish events to an Amazon Simple Notification Service (Amazon SNS) topic.

      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • TopicArn (string) --

        Amazon SNS topic ARN to which Amazon S3 will publish a message when it detects events of specified type.

      • Events (list) --

        • (string) --

          Bucket event for which to send notifications.

      • Filter (dict) --

        Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

        • Key (dict) --

          Container for object key name prefix and suffix filtering rules.

          • FilterRules (list) --

            A list of containers for key value pair that defines the criteria for the filter rule.

            • (dict) --

              Container for key value pair that defines the criteria for the filter rule.

              • Name (string) --

                Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

              • Value (string) --

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_notification_configuration() to update the attributes of the BucketNotification resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_notification.load()
Returns
None
put(**kwargs)

Enables notifications of specified events for a bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_notification.put(
    NotificationConfiguration={
        'TopicConfigurations': [
            {
                'Id': 'string',
                'TopicArn': 'string',
                'Events': [
                    's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
                ],
                'Filter': {
                    'Key': {
                        'FilterRules': [
                            {
                                'Name': 'prefix'|'suffix',
                                'Value': 'string'
                            },
                        ]
                    }
                }
            },
        ],
        'QueueConfigurations': [
            {
                'Id': 'string',
                'QueueArn': 'string',
                'Events': [
                    's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
                ],
                'Filter': {
                    'Key': {
                        'FilterRules': [
                            {
                                'Name': 'prefix'|'suffix',
                                'Value': 'string'
                            },
                        ]
                    }
                }
            },
        ],
        'LambdaFunctionConfigurations': [
            {
                'Id': 'string',
                'LambdaFunctionArn': 'string',
                'Events': [
                    's3:ReducedRedundancyLostObject'|'s3:ObjectCreated:*'|'s3:ObjectCreated:Put'|'s3:ObjectCreated:Post'|'s3:ObjectCreated:Copy'|'s3:ObjectCreated:CompleteMultipartUpload'|'s3:ObjectRemoved:*'|'s3:ObjectRemoved:Delete'|'s3:ObjectRemoved:DeleteMarkerCreated',
                ],
                'Filter': {
                    'Key': {
                        'FilterRules': [
                            {
                                'Name': 'prefix'|'suffix',
                                'Value': 'string'
                            },
                        ]
                    }
                }
            },
        ]
    }
)
Parameters
NotificationConfiguration (dict) --

[REQUIRED]

Container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off on the bucket.

  • TopicConfigurations (list) --
    • (dict) --

      Container for specifying the configuration when you want Amazon S3 to publish events to an Amazon Simple Notification Service (Amazon SNS) topic.

      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • TopicArn (string) -- [REQUIRED]

        Amazon SNS topic ARN to which Amazon S3 will publish a message when it detects events of specified type.

      • Events (list) -- [REQUIRED]
        • (string) --

          Bucket event for which to send notifications.

      • Filter (dict) --

        Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

        • Key (dict) --

          Container for object key name prefix and suffix filtering rules.

          • FilterRules (list) --

            A list of containers for key value pair that defines the criteria for the filter rule.

            • (dict) --

              Container for key value pair that defines the criteria for the filter rule.

              • Name (string) --

                Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

              • Value (string) --
  • QueueConfigurations (list) --
    • (dict) --

      Container for specifying an configuration when you want Amazon S3 to publish events to an Amazon Simple Queue Service (Amazon SQS) queue.

      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • QueueArn (string) -- [REQUIRED]

        Amazon SQS queue ARN to which Amazon S3 will publish a message when it detects events of specified type.

      • Events (list) -- [REQUIRED]
        • (string) --

          Bucket event for which to send notifications.

      • Filter (dict) --

        Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

        • Key (dict) --

          Container for object key name prefix and suffix filtering rules.

          • FilterRules (list) --

            A list of containers for key value pair that defines the criteria for the filter rule.

            • (dict) --

              Container for key value pair that defines the criteria for the filter rule.

              • Name (string) --

                Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

              • Value (string) --
  • LambdaFunctionConfigurations (list) --
    • (dict) --

      Container for specifying the AWS Lambda notification configuration.

      • Id (string) --

        Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.

      • LambdaFunctionArn (string) -- [REQUIRED]

        Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type.

      • Events (list) -- [REQUIRED]
        • (string) --

          Bucket event for which to send notifications.

      • Filter (dict) --

        Container for object key name filtering rules. For information about key name filtering, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

        • Key (dict) --

          Container for object key name prefix and suffix filtering rules.

          • FilterRules (list) --

            A list of containers for key value pair that defines the criteria for the filter rule.

            • (dict) --

              Container for key value pair that defines the criteria for the filter rule.

              • Name (string) --

                Object key name prefix or suffix identifying one or more objects to which the filtering rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, go to Configuring Event Notifications in the Amazon Simple Storage Service Developer Guide.

              • Value (string) --
Returns
None
reload()

Calls S3.Client.get_bucket_notification_configuration() to update the attributes of the BucketNotification resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_notification.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_notification.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketPolicy

class S3.BucketPolicy(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketPolicy:

import boto3

s3 = boto3.resource('s3')
bucket_policy = s3.BucketPolicy('bucket_name')
Parameters
bucket_name (string) -- The BucketPolicy's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketPolicy's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

policy
  • (string) --

    The bucket policy as a JSON document.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

delete()

Deletes the policy from the bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_policy.delete()
Returns
None
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_policy() to update the attributes of the BucketPolicy resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_policy.load()
Returns
None
put(**kwargs)

Replaces a policy on a bucket. If the bucket already has a policy, the one in this request completely replaces it.

See also: AWS API Documentation

Request Syntax

response = bucket_policy.put(
    ConfirmRemoveSelfBucketAccess=True|False,
    Policy='string'
)
Parameters
  • ConfirmRemoveSelfBucketAccess (boolean) -- Set this parameter to true to confirm that you want to remove your permissions to change this bucket policy in the future.
  • Policy (string) --

    [REQUIRED]

    The bucket policy as a JSON document.

Returns

None

reload()

Calls S3.Client.get_bucket_policy() to update the attributes of the BucketPolicy resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_policy.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_policy.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketRequestPayment

class S3.BucketRequestPayment(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketRequestPayment:

import boto3

s3 = boto3.resource('s3')
bucket_request_payment = s3.BucketRequestPayment('bucket_name')
Parameters
bucket_name (string) -- The BucketRequestPayment's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketRequestPayment's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

payer
  • (string) --

    Specifies who pays for the download and request fees.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_request_payment() to update the attributes of the BucketRequestPayment resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_request_payment.load()
Returns
None
put(**kwargs)

Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download. Documentation on requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html

See also: AWS API Documentation

Request Syntax

response = bucket_request_payment.put(
    RequestPaymentConfiguration={
        'Payer': 'Requester'|'BucketOwner'
    }
)
Parameters
RequestPaymentConfiguration (dict) --

[REQUIRED]

  • Payer (string) -- [REQUIRED]

    Specifies who pays for the download and request fees.

Returns
None
reload()

Calls S3.Client.get_bucket_request_payment() to update the attributes of the BucketRequestPayment resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_request_payment.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_request_payment.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketTagging

class S3.BucketTagging(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketTagging:

import boto3

s3 = boto3.resource('s3')
bucket_tagging = s3.BucketTagging('bucket_name')
Parameters
bucket_name (string) -- The BucketTagging's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketTagging's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

tag_set
  • (list) --

    • (dict) --

      • Key (string) --

        Name of the tag.

      • Value (string) --

        Value of the tag.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

delete()

Deletes the tags from the bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_tagging.delete()
Returns
None
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_tagging() to update the attributes of the BucketTagging resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_tagging.load()
Returns
None
put(**kwargs)

Sets the tags for a bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_tagging.put(
    Tagging={
        'TagSet': [
            {
                'Key': 'string',
                'Value': 'string'
            },
        ]
    }
)
Parameters
Tagging (dict) --

[REQUIRED]

  • TagSet (list) -- [REQUIRED]
    • (dict) --
      • Key (string) -- [REQUIRED]

        Name of the tag.

      • Value (string) -- [REQUIRED]

        Value of the tag.

Returns
None
reload()

Calls S3.Client.get_bucket_tagging() to update the attributes of the BucketTagging resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_tagging.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_tagging.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketVersioning

class S3.BucketVersioning(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketVersioning:

import boto3

s3 = boto3.resource('s3')
bucket_versioning = s3.BucketVersioning('bucket_name')
Parameters
bucket_name (string) -- The BucketVersioning's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketVersioning's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

mfa_delete
  • (string) --

    Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned.

status
  • (string) --

    The versioning state of the bucket.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

enable(**kwargs)

Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.

See also: AWS API Documentation

Request Syntax

response = bucket_versioning.enable(
    MFA='string',

)
Parameters
MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
Returns
None
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_versioning() to update the attributes of the BucketVersioning resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_versioning.load()
Returns
None
put(**kwargs)

Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.

See also: AWS API Documentation

Request Syntax

response = bucket_versioning.put(
    MFA='string',
    VersioningConfiguration={
        'MFADelete': 'Enabled'|'Disabled',
        'Status': 'Enabled'|'Suspended'
    }
)
Parameters
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • VersioningConfiguration (dict) --

    [REQUIRED]

    • MFADelete (string) --

      Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned.

    • Status (string) --

      The versioning state of the bucket.

Returns

None

reload()

Calls S3.Client.get_bucket_versioning() to update the attributes of the BucketVersioning resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_versioning.reload()
Returns
None
suspend(**kwargs)

Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.

See also: AWS API Documentation

Request Syntax

response = bucket_versioning.suspend(
    MFA='string',

)
Parameters
MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_versioning.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

BucketWebsite

class S3.BucketWebsite(bucket_name)

A resource representing an Amazon Simple Storage Service (S3) BucketWebsite:

import boto3

s3 = boto3.resource('s3')
bucket_website = s3.BucketWebsite('bucket_name')
Parameters
bucket_name (string) -- The BucketWebsite's bucket_name identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The BucketWebsite's bucket_name identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

error_document
  • (dict) --

    • Key (string) --

      The object key name to use when a 4XX class error occurs.

index_document
  • (dict) --

    • Suffix (string) --

      A suffix that is appended to a request that is for a directory on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character.

redirect_all_requests_to
  • (dict) --

    • HostName (string) --

      Name of the host where requests will be redirected.

    • Protocol (string) --

      Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

routing_rules
  • (list) --

    • (dict) --

      • Condition (dict) --

        A container for describing a condition that must be met for the specified redirect to apply. For example, 1. If request is for pages in the /docs folder, redirect to the /documents folder. 2. If request results in HTTP error 4xx, redirect request to another host where you might process the error.

        • HttpErrorCodeReturnedEquals (string) --

          The HTTP error code when the redirect is applied. In the event of an error, if the error code equals this value, then the specified redirect is applied. Required when parent element Condition is specified and sibling KeyPrefixEquals is not specified. If both are specified, then both must be true for the redirect to be applied.

        • KeyPrefixEquals (string) --

          The object key name prefix when the redirect is applied. For example, to redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. To redirect request for all pages with the prefix docs/, the key prefix will be /docs, which identifies all objects in the docs/ folder. Required when the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is not specified. If both conditions are specified, both must be true for the redirect to be applied.

      • Redirect (dict) --

        Container for redirect information. You can redirect requests to another host, to another page, or with another protocol. In the event of an error, you can can specify a different error code to return.

        • HostName (string) --

          The host name to use in the redirect request.

        • HttpRedirectCode (string) --

          The HTTP redirect code to use on the response. Not required if one of the siblings is present.

        • Protocol (string) --

          Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

        • ReplaceKeyPrefixWith (string) --

          The object key prefix to use in the redirect request. For example, to redirect requests for all pages with prefix docs/ (objects in the docs/ folder) to documents/, you can set a condition block with KeyPrefixEquals set to docs/ and in the Redirect set ReplaceKeyPrefixWith to /documents. Not required if one of the siblings is present. Can be present only if ReplaceKeyWith is not provided.

        • ReplaceKeyWith (string) --

          The specific object key to use in the redirect request. For example, redirect request to error.html. Not required if one of the sibling is present. Can be present only if ReplaceKeyPrefixWith is not provided.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

delete()

This operation removes the website configuration from the bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_website.delete()
Returns
None
get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_bucket_website() to update the attributes of the BucketWebsite resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_website.load()
Returns
None
put(**kwargs)

Set the website configuration for a bucket.

See also: AWS API Documentation

Request Syntax

response = bucket_website.put(
    WebsiteConfiguration={
        'ErrorDocument': {
            'Key': 'string'
        },
        'IndexDocument': {
            'Suffix': 'string'
        },
        'RedirectAllRequestsTo': {
            'HostName': 'string',
            'Protocol': 'http'|'https'
        },
        'RoutingRules': [
            {
                'Condition': {
                    'HttpErrorCodeReturnedEquals': 'string',
                    'KeyPrefixEquals': 'string'
                },
                'Redirect': {
                    'HostName': 'string',
                    'HttpRedirectCode': 'string',
                    'Protocol': 'http'|'https',
                    'ReplaceKeyPrefixWith': 'string',
                    'ReplaceKeyWith': 'string'
                }
            },
        ]
    }
)
Parameters
WebsiteConfiguration (dict) --

[REQUIRED]

  • ErrorDocument (dict) --
    • Key (string) -- [REQUIRED]

      The object key name to use when a 4XX class error occurs.

  • IndexDocument (dict) --
    • Suffix (string) -- [REQUIRED]

      A suffix that is appended to a request that is for a directory on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character.

  • RedirectAllRequestsTo (dict) --
    • HostName (string) -- [REQUIRED]

      Name of the host where requests will be redirected.

    • Protocol (string) --

      Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

  • RoutingRules (list) --
    • (dict) --
      • Condition (dict) --

        A container for describing a condition that must be met for the specified redirect to apply. For example, 1. If request is for pages in the /docs folder, redirect to the /documents folder. 2. If request results in HTTP error 4xx, redirect request to another host where you might process the error.

        • HttpErrorCodeReturnedEquals (string) --

          The HTTP error code when the redirect is applied. In the event of an error, if the error code equals this value, then the specified redirect is applied. Required when parent element Condition is specified and sibling KeyPrefixEquals is not specified. If both are specified, then both must be true for the redirect to be applied.

        • KeyPrefixEquals (string) --

          The object key name prefix when the redirect is applied. For example, to redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. To redirect request for all pages with the prefix docs/, the key prefix will be /docs, which identifies all objects in the docs/ folder. Required when the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is not specified. If both conditions are specified, both must be true for the redirect to be applied.

      • Redirect (dict) -- [REQUIRED]

        Container for redirect information. You can redirect requests to another host, to another page, or with another protocol. In the event of an error, you can can specify a different error code to return.

        • HostName (string) --

          The host name to use in the redirect request.

        • HttpRedirectCode (string) --

          The HTTP redirect code to use on the response. Not required if one of the siblings is present.

        • Protocol (string) --

          Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.

        • ReplaceKeyPrefixWith (string) --

          The object key prefix to use in the redirect request. For example, to redirect requests for all pages with prefix docs/ (objects in the docs/ folder) to documents/, you can set a condition block with KeyPrefixEquals set to docs/ and in the Redirect set ReplaceKeyPrefixWith to /documents. Not required if one of the siblings is present. Can be present only if ReplaceKeyWith is not provided.

        • ReplaceKeyWith (string) --

          The specific object key to use in the redirect request. For example, redirect request to error.html. Not required if one of the sibling is present. Can be present only if ReplaceKeyPrefixWith is not provided.

Returns
None
reload()

Calls S3.Client.get_bucket_website() to update the attributes of the BucketWebsite resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

bucket_website.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Bucket()

Creates a Bucket resource.:

bucket = bucket_website.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource

MultipartUpload

class S3.MultipartUpload(bucket_name, object_key, id)

A resource representing an Amazon Simple Storage Service (S3) MultipartUpload:

import boto3

s3 = boto3.resource('s3')
multipart_upload = s3.MultipartUpload('bucket_name','object_key','id')
Parameters
  • bucket_name (string) -- The MultipartUpload's bucket_name identifier. This must be set.
  • object_key (string) -- The MultipartUpload's object_key identifier. This must be set.
  • id (string) -- The MultipartUpload's id identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

These are the resource's available collections:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The MultipartUpload's bucket_name identifier. This must be set.

object_key

(string) The MultipartUpload's object_key identifier. This must be set.

id

(string) The MultipartUpload's id identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

initiated
  • (datetime) --

    Date and time at which the multipart upload was initiated.

initiator
  • (dict) --

    Identifies who initiated the multipart upload.

    • ID (string) --

      If the principal is an AWS account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.

    • DisplayName (string) --

      Name of the Principal.

key
  • (string) --

    Key of the object for which the multipart upload was initiated.

owner
  • (dict) --
    • DisplayName (string) --
    • ID (string) --
storage_class
  • (string) --

    The class of storage used to store the object.

upload_id
  • (string) --

    Upload ID that identifies the multipart upload.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

abort(**kwargs)

Aborts a multipart upload.

To verify that all parts have been removed, so you don't get charged for the part storage, you should call the List Parts operation and ensure the parts list is empty.

See also: AWS API Documentation

Request Syntax

response = multipart_upload.abort(
    RequestPayer='requester'
)
Parameters
RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type
dict
Returns
Response Syntax
{
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --
    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

complete(**kwargs)

Completes a multipart upload by assembling previously uploaded parts.

See also: AWS API Documentation

Request Syntax

object = multipart_upload.complete(
    MultipartUpload={
        'Parts': [
            {
                'ETag': 'string',
                'PartNumber': 123
            },
        ]
    },
    RequestPayer='requester'
)
Parameters
  • MultipartUpload (dict) --
    • Parts (list) --
      • (dict) --
        • ETag (string) --

          Entity tag returned when the part was uploaded.

        • PartNumber (integer) --

          Part number that identifies the part. This is a positive integer between 1 and 10,000.

  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

s3.Object

Returns

Object resource

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Object()

Creates a Object resource.:

object = multipart_upload.Object()
Return type
S3.Object
Returns
A Object resource
Part(part_number)

Creates a MultipartUploadPart resource.:

multipart_upload_part = multipart_upload.Part('part_number')
Parameters
part_number (string) -- The Part's part_number identifier. This must be set.
Return type
S3.MultipartUploadPart
Returns
A MultipartUploadPart resource

Collections

Collections provide an interface to iterate over and manipulate groups of resources. For more information about collections refer to the Resources Introduction Guide.

parts

A collection of MultipartUploadPart resources

all()

Creates an iterable of all MultipartUploadPart resources in the collection.

See also: AWS API Documentation

Request Syntax

multipart_upload_part_iterator = multipart_upload.parts.all()
Return type
list(s3.MultipartUploadPart)
Returns
A list of MultipartUploadPart resources
filter(**kwargs)

Creates an iterable of all MultipartUploadPart resources in the collection filtered by kwargs passed to method.

See also: AWS API Documentation

Request Syntax

multipart_upload_part_iterator = multipart_upload.parts.filter(
    MaxParts=123,
    PartNumberMarker=123,
    RequestPayer='requester'
)
Parameters
  • MaxParts (integer) -- Sets the maximum number of parts to return.
  • PartNumberMarker (integer) -- Specifies the part after which listing should begin. Only parts with higher part numbers will be listed.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

list(s3.MultipartUploadPart)

Returns

A list of MultipartUploadPart resources

limit(**kwargs)

Creates an iterable up to a specified amount of MultipartUploadPart resources in the collection.

See also: AWS API Documentation

Request Syntax

multipart_upload_part_iterator = multipart_upload.parts.limit(
    count=123
)
Parameters
count (integer) -- The limit to the number of resources in the iterable.
Return type
list(s3.MultipartUploadPart)
Returns
A list of MultipartUploadPart resources
page_size(**kwargs)

Creates an iterable of all MultipartUploadPart resources in the collection, but limits the number of items returned by each service call by the specified amount.

See also: AWS API Documentation

Request Syntax

multipart_upload_part_iterator = multipart_upload.parts.page_size(
    count=123
)
Parameters
count (integer) -- The number of items returned by each service call
Return type
list(s3.MultipartUploadPart)
Returns
A list of MultipartUploadPart resources

MultipartUploadPart

class S3.MultipartUploadPart(bucket_name, object_key, multipart_upload_id, part_number)

A resource representing an Amazon Simple Storage Service (S3) MultipartUploadPart:

import boto3

s3 = boto3.resource('s3')
multipart_upload_part = s3.MultipartUploadPart('bucket_name','object_key','multipart_upload_id','part_number')
Parameters
  • bucket_name (string) -- The MultipartUploadPart's bucket_name identifier. This must be set.
  • object_key (string) -- The MultipartUploadPart's object_key identifier. This must be set.
  • multipart_upload_id (string) -- The MultipartUploadPart's multipart_upload_id identifier. This must be set.
  • part_number (string) -- The MultipartUploadPart's part_number identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The MultipartUploadPart's bucket_name identifier. This must be set.

object_key

(string) The MultipartUploadPart's object_key identifier. This must be set.

multipart_upload_id

(string) The MultipartUploadPart's multipart_upload_id identifier. This must be set.

part_number

(string) The MultipartUploadPart's part_number identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

e_tag
  • (string) --

    Entity tag returned when the part was uploaded.

last_modified
  • (datetime) --

    Date and time at which the part was uploaded.

size
  • (integer) --

    Size of the uploaded part data.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

copy_from(**kwargs)

Uploads a part by copying data from an existing object as data source.

See also: AWS API Documentation

Request Syntax

response = multipart_upload_part.copy_from(
    CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'},
    CopySourceIfMatch='string',
    CopySourceIfModifiedSince=datetime(2015, 1, 1),
    CopySourceIfNoneMatch='string',
    CopySourceIfUnmodifiedSince=datetime(2015, 1, 1),
    CopySourceRange='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    CopySourceSSECustomerAlgorithm='string',
    CopySourceSSECustomerKey='string',
    RequestPayer='requester'
)
Parameters
  • CopySource (str or dict) -- [REQUIRED] The name of the source bucket, key name of the source object, and optional version ID of the source object. You can either provide this value as a string or a dictionary. The string form is {bucket}/{key} or {bucket}/{key}?versionId={versionId} if you want to copy a specific version. You can also provide this value as a dictionary. The dictionary format is recommended over the string format because it is more explicit. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • CopySourceIfMatch (string) -- Copies the object if its entity tag (ETag) matches the specified tag.
  • CopySourceIfModifiedSince (datetime) -- Copies the object if it has been modified since the specified time.
  • CopySourceIfNoneMatch (string) -- Copies the object if its entity tag (ETag) is different than the specified ETag.
  • CopySourceIfUnmodifiedSince (datetime) -- Copies the object if it hasn't been modified since the specified time.
  • CopySourceRange (string) -- The range of bytes to copy from the source object. The range value must use the form bytes=first-last, where the first and last are the zero-based byte offsets to copy. For example, bytes=0-9 indicates that you want to copy the first ten bytes of the source. You can copy a range only if the source object is greater than 5 GB.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • CopySourceSSECustomerAlgorithm (string) -- Specifies the algorithm to use when decrypting the source object (e.g., AES256).
  • CopySourceSSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
  • CopySourceSSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'CopySourceVersionId': 'string',
    'CopyPartResult': {
        'ETag': 'string',
        'LastModified': datetime(2015, 1, 1)
    },
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • CopySourceVersionId (string) --

      The version of the source object that was copied, if you have enabled versioning on the source bucket.

    • CopyPartResult (dict) --

      • ETag (string) --

        Entity tag of the object.

      • LastModified (datetime) --

        Date and time at which the object was uploaded.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
upload(**kwargs)

Uploads a part in a multipart upload.

Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.

See also: AWS API Documentation

Request Syntax

response = multipart_upload_part.upload(
    Body=b'bytes'|file,
    ContentLength=123,
    ContentMD5='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester'
)
Parameters
  • Body (bytes or seekable file-like object) -- Object data.
  • ContentLength (integer) -- Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
  • ContentMD5 (string) -- The base64-encoded 128-bit MD5 digest of the part data.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'ETag': 'string',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • ETag (string) --

      Entity tag for the uploaded object.

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

MultipartUpload()

Creates a MultipartUpload resource.:

multipart_upload = multipart_upload_part.MultipartUpload()
Return type
S3.MultipartUpload
Returns
A MultipartUpload resource

Object

class S3.Object(bucket_name, key)

A resource representing an Amazon Simple Storage Service (S3) Object:

import boto3

s3 = boto3.resource('s3')
object = s3.Object('bucket_name','key')
Parameters
  • bucket_name (string) -- The Object's bucket_name identifier. This must be set.
  • key (string) -- The Object's key identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

These are the resource's available waiters:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The Object's bucket_name identifier. This must be set.

key

(string) The Object's key identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

accept_ranges
  • (string) --
cache_control
  • (string) --

    Specifies caching behavior along the request/reply chain.

content_disposition
  • (string) --

    Specifies presentational information for the object.

content_encoding
  • (string) --

    Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.

content_language
  • (string) --

    The language the content is in.

content_length
  • (integer) --

    Size of the body in bytes.

content_type
  • (string) --

    A standard MIME type describing the format of the object data.

delete_marker
  • (boolean) --

    Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.

e_tag
  • (string) --

    An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL

expiration
  • (string) --

    If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.

expires
  • (datetime) --

    The date and time at which the object is no longer cacheable.

last_modified
  • (datetime) --

    Last modified date of the object

metadata
  • (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
missing_meta
  • (integer) --

    This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.

parts_count
  • (integer) --

    The count of parts this object has.

replication_status
  • (string) --
request_charged
  • (string) --

    If present, indicates that the requester was successfully charged for the request.

restore
  • (string) --

    Provides information about object restoration operation and expiration time of the restored object copy.

server_side_encryption
  • (string) --

    The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

sse_customer_algorithm
  • (string) --

    If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

sse_customer_key_md5
  • (string) --

    If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

ssekms_key_id
  • (string) --

    If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

storage_class
  • (string) --
version_id
  • (string) --

    Version of the object.

website_redirect_location
  • (string) --

    If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

copy(CopySource, ExtraArgs=None, Callback=None, SourceClient=None, Config=None)

Copy an object from one S3 location to this object.

This is a managed transfer which will perform a multipart copy in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.resource('s3')
copy_source = {
    'Bucket': 'mybucket',
    'Key': 'mykey'
}
bucket = s3.Bucket('otherbucket')
obj = bucket.Object('otherkey')
obj.copy(copy_source)
Parameters
  • CopySource (dict) -- The name of the source bucket, key name of the source object, and optional version ID of the source object. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the copy.
  • SourceClient (botocore or boto3 Client) -- The client to be used for operation that may happen at the source object. For example, this client is used for the head_object that determines the size of the copy. If no client is provided, the current client is used as the client for the source object.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the copy.
copy_from(**kwargs)

Creates a copy of an object that is already stored in Amazon S3.

See also: AWS API Documentation

Request Syntax

response = object.copy_from(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentType='string',
    CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'},
    CopySourceIfMatch='string',
    CopySourceIfModifiedSince=datetime(2015, 1, 1),
    CopySourceIfNoneMatch='string',
    CopySourceIfUnmodifiedSince=datetime(2015, 1, 1),
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Metadata={
        'string': 'string'
    },
    MetadataDirective='COPY'|'REPLACE',
    TaggingDirective='COPY'|'REPLACE',
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    CopySourceSSECustomerAlgorithm='string',
    CopySourceSSECustomerKey='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • CopySource (str or dict) -- [REQUIRED] The name of the source bucket, key name of the source object, and optional version ID of the source object. You can either provide this value as a string or a dictionary. The string form is {bucket}/{key} or {bucket}/{key}?versionId={versionId} if you want to copy a specific version. You can also provide this value as a dictionary. The dictionary format is recommended over the string format because it is more explicit. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • CopySourceIfMatch (string) -- Copies the object if its entity tag (ETag) matches the specified tag.
  • CopySourceIfModifiedSince (datetime) -- Copies the object if it has been modified since the specified time.
  • CopySourceIfNoneMatch (string) -- Copies the object if its entity tag (ETag) is different than the specified ETag.
  • CopySourceIfUnmodifiedSince (datetime) -- Copies the object if it hasn't been modified since the specified time.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • MetadataDirective (string) -- Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.
  • TaggingDirective (string) -- Specifies whether the object tag-set are copied from the source object or replaced with tag-set provided in the request.
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • CopySourceSSECustomerAlgorithm (string) -- Specifies the algorithm to use when decrypting the source object (e.g., AES256).
  • CopySourceSSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
  • CopySourceSSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object destination object this value must be used in conjunction with the TaggingDirective. The tag-set must be encoded as URL Query parameters
Return type

dict

Returns

Response Syntax

{
    'CopyObjectResult': {
        'ETag': 'string',
        'LastModified': datetime(2015, 1, 1)
    },
    'Expiration': 'string',
    'CopySourceVersionId': 'string',
    'VersionId': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • CopyObjectResult (dict) --

      • ETag (string) --
      • LastModified (datetime) --
    • Expiration (string) --

      If the object expiration is configured, the response includes this header.

    • CopySourceVersionId (string) --

    • VersionId (string) --

      Version ID of the newly created copy.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

delete(**kwargs)

Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.

See also: AWS API Documentation

Request Syntax

response = object.delete(
    MFA='string',
    VersionId='string',
    RequestPayer='requester'
)
Parameters
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'DeleteMarker': True|False,
    'VersionId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • DeleteMarker (boolean) --

      Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.

    • VersionId (string) --

      Returns the version ID of the delete marker created as a result of the DELETE operation.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

download_file(Filename, ExtraArgs=None, Callback=None, Config=None)

Download an S3 object to a file.

Usage:

import boto3
s3 = boto3.resource('s3')
s3.Object('mybucket', 'hello.txt').download_file('/tmp/hello.txt')

Similar behavior as S3Transfer's download_file() method, except that parameters are capitalized. Detailed examples can be found at S3Transfer's Usage.

Parameters
  • Filename (str) -- The path to the file to download to.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the download.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the transfer.
download_fileobj(Fileobj, ExtraArgs=None, Callback=None, Config=None)

Download this object from S3 to a file-like object.

The file-like object must be in binary mode.

This is a managed transfer which will perform a multipart download in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.resource('s3')
bucket = s3.Bucket('mybucket')
obj = bucket.Object('mykey')

with open('filename', 'wb') as data:
    obj.download_fileobj(data)
Parameters
  • Fileobj (a file-like object) -- A file-like object to download into. At a minimum, it must implement the write method and must accept bytes.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the download.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the download.
get(**kwargs)

Retrieves objects from Amazon S3.

See also: AWS API Documentation

Request Syntax

response = object.get(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    ResponseCacheControl='string',
    ResponseContentDisposition='string',
    ResponseContentEncoding='string',
    ResponseContentLanguage='string',
    ResponseContentType='string',
    ResponseExpires=datetime(2015, 1, 1),
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • ResponseCacheControl (string) -- Sets the Cache-Control header of the response.
  • ResponseContentDisposition (string) -- Sets the Content-Disposition header of the response
  • ResponseContentEncoding (string) -- Sets the Content-Encoding header of the response.
  • ResponseContentLanguage (string) -- Sets the Content-Language header of the response.
  • ResponseContentType (string) -- Sets the Content-Type header of the response.
  • ResponseExpires (datetime) -- Sets the Expires header of the response.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' GET request for the part specified. Useful for downloading just a part of an object.
Return type

dict

Returns

Response Syntax

{
    'Body': StreamingBody(),
    'DeleteMarker': True|False,
    'AcceptRanges': 'string',
    'Expiration': 'string',
    'Restore': 'string',
    'LastModified': datetime(2015, 1, 1),
    'ContentLength': 123,
    'ETag': 'string',
    'MissingMeta': 123,
    'VersionId': 'string',
    'CacheControl': 'string',
    'ContentDisposition': 'string',
    'ContentEncoding': 'string',
    'ContentLanguage': 'string',
    'ContentRange': 'string',
    'ContentType': 'string',
    'Expires': datetime(2015, 1, 1),
    'WebsiteRedirectLocation': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'Metadata': {
        'string': 'string'
    },
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester',
    'ReplicationStatus': 'COMPLETE'|'PENDING'|'FAILED'|'REPLICA',
    'PartsCount': 123,
    'TagCount': 123
}

Response Structure

  • (dict) --

    • Body (StreamingBody) --

      Object data.

    • DeleteMarker (boolean) --

      Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.

    • AcceptRanges (string) --

    • Expiration (string) --

      If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.

    • Restore (string) --

      Provides information about object restoration operation and expiration time of the restored object copy.

    • LastModified (datetime) --

      Last modified date of the object

    • ContentLength (integer) --

      Size of the body in bytes.

    • ETag (string) --

      An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL

    • MissingMeta (integer) --

      This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.

    • VersionId (string) --

      Version of the object.

    • CacheControl (string) --

      Specifies caching behavior along the request/reply chain.

    • ContentDisposition (string) --

      Specifies presentational information for the object.

    • ContentEncoding (string) --

      Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.

    • ContentLanguage (string) --

      The language the content is in.

    • ContentRange (string) --

      The portion of the object returned in the response.

    • ContentType (string) --

      A standard MIME type describing the format of the object data.

    • Expires (datetime) --

      The date and time at which the object is no longer cacheable.

    • WebsiteRedirectLocation (string) --

      If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • Metadata (dict) --

      A map of metadata to store with the object in S3.

      • (string) --
        • (string) --
    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • StorageClass (string) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • ReplicationStatus (string) --

    • PartsCount (integer) --

      The count of parts this object has.

    • TagCount (integer) --

      The number of tags, if any, on the object.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
initiate_multipart_upload(**kwargs)

Initiates a multipart upload and returns an upload ID.

Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.

See also: AWS API Documentation

Request Syntax

multipart_upload = object.initiate_multipart_upload(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentType='string',
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Metadata={
        'string': 'string'
    },
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object. The tag-set must be encoded as URL Query parameters
Return type

s3.MultipartUpload

Returns

MultipartUpload resource

load()

Calls S3.Client.head_object() to update the attributes of the Object resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

object.load()
Returns
None
put(**kwargs)

Adds an object to a bucket.

See also: AWS API Documentation

Request Syntax

response = object.put(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    Body=b'bytes'|file,
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentLength=123,
    ContentMD5='string',
    ContentType='string',
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Metadata={
        'string': 'string'
    },
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • Body (bytes or seekable file-like object) -- Object data.
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentLength (integer) -- Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
  • ContentMD5 (string) -- The base64-encoded 128-bit MD5 digest of the part data.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object. The tag-set must be encoded as URL Query parameters
Return type

dict

Returns

Response Syntax

{
    'Expiration': 'string',
    'ETag': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'VersionId': 'string',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • 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.

    • ETag (string) --

      Entity tag for the uploaded object.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • VersionId (string) --

      Version of the object.

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

reload()

Calls S3.Client.head_object() to update the attributes of the Object resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

object.reload()
Returns
None
restore_object(**kwargs)

Restores an archived copy of an object back into Amazon S3

See also: AWS API Documentation

Request Syntax

response = object.restore_object(
    VersionId='string',
    RestoreRequest={
        'Days': 123,
        'GlacierJobParameters': {
            'Tier': 'Standard'|'Bulk'|'Expedited'
        },
        'Type': 'SELECT',
        'Tier': 'Standard'|'Bulk'|'Expedited',
        'Description': 'string',
        'SelectParameters': {
            'InputSerialization': {
                'CSV': {
                    'FileHeaderInfo': 'USE'|'IGNORE'|'NONE',
                    'Comments': 'string',
                    'QuoteEscapeCharacter': 'string',
                    'RecordDelimiter': 'string',
                    'FieldDelimiter': 'string',
                    'QuoteCharacter': 'string',
                    'AllowQuotedRecordDelimiter': True|False
                },
                'CompressionType': 'NONE'|'GZIP'|'BZIP2',
                'JSON': {
                    'Type': 'DOCUMENT'|'LINES'
                }
            },
            'ExpressionType': 'SQL',
            'Expression': 'string',
            'OutputSerialization': {
                'CSV': {
                    'QuoteFields': 'ALWAYS'|'ASNEEDED',
                    'QuoteEscapeCharacter': 'string',
                    'RecordDelimiter': 'string',
                    'FieldDelimiter': 'string',
                    'QuoteCharacter': 'string'
                },
                'JSON': {
                    'RecordDelimiter': 'string'
                }
            }
        },
        'OutputLocation': {
            'S3': {
                'BucketName': 'string',
                'Prefix': 'string',
                'Encryption': {
                    'EncryptionType': 'AES256'|'aws:kms',
                    'KMSKeyId': 'string',
                    'KMSContext': 'string'
                },
                'CannedACL': 'private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
                'AccessControlList': [
                    {
                        'Grantee': {
                            'DisplayName': 'string',
                            'EmailAddress': 'string',
                            'ID': 'string',
                            'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                            'URI': 'string'
                        },
                        'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
                    },
                ],
                'Tagging': {
                    'TagSet': [
                        {
                            'Key': 'string',
                            'Value': 'string'
                        },
                    ]
                },
                'UserMetadata': [
                    {
                        'Name': 'string',
                        'Value': 'string'
                    },
                ],
                'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA'
            }
        }
    },
    RequestPayer='requester'
)
Parameters
  • VersionId (string) --
  • RestoreRequest (dict) --

    Container for restore job parameters.

    • Days (integer) --

      Lifetime of the active copy in days. Do not use with restores that specify OutputLocation.

    • GlacierJobParameters (dict) --

      Glacier related parameters pertaining to this job. Do not use with restores that specify OutputLocation.

      • Tier (string) -- [REQUIRED]

        Glacier retrieval tier at which the restore will be processed.

    • Type (string) --

      Type of restore request.

    • Tier (string) --

      Glacier retrieval tier at which the restore will be processed.

    • Description (string) --

      The optional description for the job.

    • SelectParameters (dict) --

      Describes the parameters for Select job types.

      • InputSerialization (dict) -- [REQUIRED]

        Describes the serialization format of the object.

        • CSV (dict) --

          Describes the serialization of a CSV-encoded object.

          • FileHeaderInfo (string) --

            Describes the first line of input. Valid values: None, Ignore, Use.

          • Comments (string) --

            Single character used to indicate a row should be ignored when present at the start of a row.

          • QuoteEscapeCharacter (string) --

            Single character used for escaping the quote character inside an already escaped value.

          • RecordDelimiter (string) --

            Value used to separate individual records.

          • FieldDelimiter (string) --

            Value used to separate individual fields in a record.

          • QuoteCharacter (string) --

            Value used for escaping where the field delimiter is part of the value.

          • AllowQuotedRecordDelimiter (boolean) --

            Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.

        • CompressionType (string) --

          Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.

        • JSON (dict) --

          Specifies JSON as object's input serialization format.

          • Type (string) --

            The type of JSON. Valid values: Document, Lines.

      • ExpressionType (string) -- [REQUIRED]

        The type of the provided expression (e.g., SQL).

      • Expression (string) -- [REQUIRED]

        The expression that is used to query the object.

      • OutputSerialization (dict) -- [REQUIRED]

        Describes how the results of the Select job are serialized.

        • CSV (dict) --

          Describes the serialization of CSV-encoded Select results.

          • QuoteFields (string) --

            Indicates whether or not all output fields should be quoted.

          • QuoteEscapeCharacter (string) --

            Single character used for escaping the quote character inside an already escaped value.

          • RecordDelimiter (string) --

            Value used to separate individual records.

          • FieldDelimiter (string) --

            Value used to separate individual fields in a record.

          • QuoteCharacter (string) --

            Value used for escaping where the field delimiter is part of the value.

        • JSON (dict) --

          Specifies JSON as request's output serialization format.

          • RecordDelimiter (string) --

            The value used to separate individual records in the output.

    • OutputLocation (dict) --

      Describes the location where the restore job's output is stored.

      • S3 (dict) --

        Describes an S3 location that will receive the results of the restore request.

        • BucketName (string) -- [REQUIRED]

          The name of the bucket where the restore results will be placed.

        • Prefix (string) -- [REQUIRED]

          The prefix that is prepended to the restore results for this request.

        • Encryption (dict) --

          Describes the server-side encryption that will be applied to the restore results.

          • EncryptionType (string) -- [REQUIRED]

            The server-side encryption algorithm used when storing job results in Amazon S3 (e.g., AES256, aws:kms).

          • KMSKeyId (string) --

            If the encryption type is aws:kms, this optional value specifies the AWS KMS key ID to use for encryption of job results.

          • KMSContext (string) --

            If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.

        • CannedACL (string) --

          The canned ACL to apply to the restore results.

        • AccessControlList (list) --

          A list of grants that control access to the staged results.

          • (dict) --
            • Grantee (dict) --
              • DisplayName (string) --

                Screen name of the grantee.

              • EmailAddress (string) --

                Email address of the grantee.

              • ID (string) --

                The canonical user ID of the grantee.

              • Type (string) -- [REQUIRED]

                Type of grantee

              • URI (string) --

                URI of the grantee group.

            • Permission (string) --

              Specifies the permission given to the grantee.

        • Tagging (dict) --

          The tag-set that is applied to the restore results.

          • TagSet (list) -- [REQUIRED]
            • (dict) --
              • Key (string) -- [REQUIRED]

                Name of the tag.

              • Value (string) -- [REQUIRED]

                Value of the tag.

        • UserMetadata (list) --

          A list of metadata to store with the restore results in S3.

          • (dict) --

            A metadata key-value pair to store with an object.

            • Name (string) --
            • Value (string) --
        • StorageClass (string) --

          The class of storage used to store the restore results.

  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'RequestCharged': 'requester',
    'RestoreOutputPath': 'string'
}

Response Structure

  • (dict) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • RestoreOutputPath (string) --

      Indicates the path in the provided S3 output location where Select results will be restored to.

upload_file(Filename, ExtraArgs=None, Callback=None, Config=None)

Upload a file to an S3 object.

Usage:

import boto3
s3 = boto3.resource('s3')
s3.Object('mybucket', 'hello.txt').upload_file('/tmp/hello.txt')

Similar behavior as S3Transfer's upload_file() method, except that parameters are capitalized. Detailed examples can be found at S3Transfer's Usage.

Parameters
  • Filename (str) -- The path to the file to upload.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the upload.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the transfer.
upload_fileobj(Fileobj, ExtraArgs=None, Callback=None, Config=None)

Upload a file-like object to this object.

The file-like object must be in binary mode.

This is a managed transfer which will perform a multipart upload in multiple threads if necessary.

Usage:

import boto3
s3 = boto3.resource('s3')
bucket = s3.Bucket('mybucket')
obj = bucket.Object('mykey')

with open('filename', 'rb') as data:
    obj.upload_fileobj(data)
Parameters
  • Fileobj (a file-like object) -- A file-like object to upload. At a minimum, it must implement the read method, and must return bytes.
  • ExtraArgs (dict) -- Extra arguments that may be passed to the client operation.
  • Callback (function) -- A method which takes a number of bytes transferred to be periodically called during the upload.
  • Config (boto3.s3.transfer.TransferConfig) -- The transfer configuration to be used when performing the upload.

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Acl()

Creates a ObjectAcl resource.:

object_acl = object.Acl()
Return type
S3.ObjectAcl
Returns
A ObjectAcl resource
Bucket()

Creates a Bucket resource.:

bucket = object.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource
MultipartUpload(id)

Creates a MultipartUpload resource.:

multipart_upload = object.MultipartUpload('id')
Parameters
id (string) -- The MultipartUpload's id identifier. This must be set.
Return type
S3.MultipartUpload
Returns
A MultipartUpload resource
Version(id)

Creates a ObjectVersion resource.:

object_version = object.Version('id')
Parameters
id (string) -- The Version's id identifier. This must be set.
Return type
S3.ObjectVersion
Returns
A ObjectVersion resource

Waiters

Waiters provide an interface to wait for a resource to reach a specific state. For more information about waiters refer to the Resources Introduction Guide.

wait_until_exists(**kwargs)

Waits until this Object is exists. This method calls S3.Waiter.object_exists.wait() which polls. S3.Client.head_object() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

object.wait_until_exists(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
Returns

None

wait_until_not_exists(**kwargs)

Waits until this Object is not exists. This method calls S3.Waiter.object_not_exists.wait() which polls. S3.Client.head_object() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

object.wait_until_not_exists(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
Returns

None

ObjectAcl

class S3.ObjectAcl(bucket_name, object_key)

A resource representing an Amazon Simple Storage Service (S3) ObjectAcl:

import boto3

s3 = boto3.resource('s3')
object_acl = s3.ObjectAcl('bucket_name','object_key')
Parameters
  • bucket_name (string) -- The ObjectAcl's bucket_name identifier. This must be set.
  • object_key (string) -- The ObjectAcl's object_key identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The ObjectAcl's bucket_name identifier. This must be set.

object_key

(string) The ObjectAcl's object_key identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

grants
  • (list) --

    A list of grants.

    • (dict) --

      • Grantee (dict) --

        • DisplayName (string) --

          Screen name of the grantee.

        • EmailAddress (string) --

          Email address of the grantee.

        • ID (string) --

          The canonical user ID of the grantee.

        • Type (string) --

          Type of grantee

        • URI (string) --

          URI of the grantee group.

      • Permission (string) --

        Specifies the permission given to the grantee.

owner
  • (dict) --
    • DisplayName (string) --
    • ID (string) --
request_charged
  • (string) --

    If present, indicates that the requester was successfully charged for the request.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
load()

Calls S3.Client.get_object_acl() to update the attributes of the ObjectAcl resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

object_acl.load()
Returns
None
put(**kwargs)

uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket

See also: AWS API Documentation

Request Syntax

response = object_acl.put(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    AccessControlPolicy={
        'Grants': [
            {
                'Grantee': {
                    'DisplayName': 'string',
                    'EmailAddress': 'string',
                    'ID': 'string',
                    'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                    'URI': 'string'
                },
                'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
            },
        ],
        'Owner': {
            'DisplayName': 'string',
            'ID': 'string'
        }
    },
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWrite='string',
    GrantWriteACP='string',
    RequestPayer='requester',
    VersionId='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • AccessControlPolicy (dict) --
    • Grants (list) --

      A list of grants.

      • (dict) --
        • Grantee (dict) --
          • DisplayName (string) --

            Screen name of the grantee.

          • EmailAddress (string) --

            Email address of the grantee.

          • ID (string) --

            The canonical user ID of the grantee.

          • Type (string) -- [REQUIRED]

            Type of grantee

          • URI (string) --

            URI of the grantee group.

        • Permission (string) --

          Specifies the permission given to the grantee.

    • Owner (dict) --
      • DisplayName (string) --
      • ID (string) --
  • GrantFullControl (string) -- Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
  • GrantRead (string) -- Allows grantee to list the objects in the bucket.
  • GrantReadACP (string) -- Allows grantee to read the bucket ACL.
  • GrantWrite (string) -- Allows grantee to create, overwrite, and delete any object in the bucket.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable bucket.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • VersionId (string) -- VersionId used to reference a specific version of the object.
Return type

dict

Returns

Response Syntax

{
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

reload()

Calls S3.Client.get_object_acl() to update the attributes of the ObjectAcl resource. Note that the load and reload methods are the same method and can be used interchangeably.

See also: AWS API Documentation

Request Syntax

object_acl.reload()
Returns
None

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Object()

Creates a Object resource.:

object = object_acl.Object()
Return type
S3.Object
Returns
A Object resource

ObjectSummary

class S3.ObjectSummary(bucket_name, key)

A resource representing an Amazon Simple Storage Service (S3) ObjectSummary:

import boto3

s3 = boto3.resource('s3')
object_summary = s3.ObjectSummary('bucket_name','key')
Parameters
  • bucket_name (string) -- The ObjectSummary's bucket_name identifier. This must be set.
  • key (string) -- The ObjectSummary's key identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

These are the resource's available waiters:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The ObjectSummary's bucket_name identifier. This must be set.

key

(string) The ObjectSummary's key identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

e_tag
  • (string) --
last_modified
  • (datetime) --
owner
  • (dict) --
    • DisplayName (string) --
    • ID (string) --
size
  • (integer) --
storage_class
  • (string) --

    The class of storage used to store the object.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

copy_from(**kwargs)

Creates a copy of an object that is already stored in Amazon S3.

See also: AWS API Documentation

Request Syntax

response = object_summary.copy_from(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentType='string',
    CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'},
    CopySourceIfMatch='string',
    CopySourceIfModifiedSince=datetime(2015, 1, 1),
    CopySourceIfNoneMatch='string',
    CopySourceIfUnmodifiedSince=datetime(2015, 1, 1),
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Metadata={
        'string': 'string'
    },
    MetadataDirective='COPY'|'REPLACE',
    TaggingDirective='COPY'|'REPLACE',
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    CopySourceSSECustomerAlgorithm='string',
    CopySourceSSECustomerKey='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • CopySource (str or dict) -- [REQUIRED] The name of the source bucket, key name of the source object, and optional version ID of the source object. You can either provide this value as a string or a dictionary. The string form is {bucket}/{key} or {bucket}/{key}?versionId={versionId} if you want to copy a specific version. You can also provide this value as a dictionary. The dictionary format is recommended over the string format because it is more explicit. The dictionary format is: {'Bucket': 'bucket', 'Key': 'key', 'VersionId': 'id'}. Note that the VersionId key is optional and may be omitted.
  • CopySourceIfMatch (string) -- Copies the object if its entity tag (ETag) matches the specified tag.
  • CopySourceIfModifiedSince (datetime) -- Copies the object if it has been modified since the specified time.
  • CopySourceIfNoneMatch (string) -- Copies the object if its entity tag (ETag) is different than the specified ETag.
  • CopySourceIfUnmodifiedSince (datetime) -- Copies the object if it hasn't been modified since the specified time.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • MetadataDirective (string) -- Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.
  • TaggingDirective (string) -- Specifies whether the object tag-set are copied from the source object or replaced with tag-set provided in the request.
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • CopySourceSSECustomerAlgorithm (string) -- Specifies the algorithm to use when decrypting the source object (e.g., AES256).
  • CopySourceSSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.
  • CopySourceSSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object destination object this value must be used in conjunction with the TaggingDirective. The tag-set must be encoded as URL Query parameters
Return type

dict

Returns

Response Syntax

{
    'CopyObjectResult': {
        'ETag': 'string',
        'LastModified': datetime(2015, 1, 1)
    },
    'Expiration': 'string',
    'CopySourceVersionId': 'string',
    'VersionId': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • CopyObjectResult (dict) --

      • ETag (string) --
      • LastModified (datetime) --
    • Expiration (string) --

      If the object expiration is configured, the response includes this header.

    • CopySourceVersionId (string) --

    • VersionId (string) --

      Version ID of the newly created copy.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

delete(**kwargs)

Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.

See also: AWS API Documentation

Request Syntax

response = object_summary.delete(
    MFA='string',
    VersionId='string',
    RequestPayer='requester'
)
Parameters
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'DeleteMarker': True|False,
    'VersionId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • DeleteMarker (boolean) --

      Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.

    • VersionId (string) --

      Returns the version ID of the delete marker created as a result of the DELETE operation.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

get(**kwargs)

Retrieves objects from Amazon S3.

See also: AWS API Documentation

Request Syntax

response = object_summary.get(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    ResponseCacheControl='string',
    ResponseContentDisposition='string',
    ResponseContentEncoding='string',
    ResponseContentLanguage='string',
    ResponseContentType='string',
    ResponseExpires=datetime(2015, 1, 1),
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • ResponseCacheControl (string) -- Sets the Cache-Control header of the response.
  • ResponseContentDisposition (string) -- Sets the Content-Disposition header of the response
  • ResponseContentEncoding (string) -- Sets the Content-Encoding header of the response.
  • ResponseContentLanguage (string) -- Sets the Content-Language header of the response.
  • ResponseContentType (string) -- Sets the Content-Type header of the response.
  • ResponseExpires (datetime) -- Sets the Expires header of the response.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' GET request for the part specified. Useful for downloading just a part of an object.
Return type

dict

Returns

Response Syntax

{
    'Body': StreamingBody(),
    'DeleteMarker': True|False,
    'AcceptRanges': 'string',
    'Expiration': 'string',
    'Restore': 'string',
    'LastModified': datetime(2015, 1, 1),
    'ContentLength': 123,
    'ETag': 'string',
    'MissingMeta': 123,
    'VersionId': 'string',
    'CacheControl': 'string',
    'ContentDisposition': 'string',
    'ContentEncoding': 'string',
    'ContentLanguage': 'string',
    'ContentRange': 'string',
    'ContentType': 'string',
    'Expires': datetime(2015, 1, 1),
    'WebsiteRedirectLocation': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'Metadata': {
        'string': 'string'
    },
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester',
    'ReplicationStatus': 'COMPLETE'|'PENDING'|'FAILED'|'REPLICA',
    'PartsCount': 123,
    'TagCount': 123
}

Response Structure

  • (dict) --

    • Body (StreamingBody) --

      Object data.

    • DeleteMarker (boolean) --

      Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.

    • AcceptRanges (string) --

    • Expiration (string) --

      If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.

    • Restore (string) --

      Provides information about object restoration operation and expiration time of the restored object copy.

    • LastModified (datetime) --

      Last modified date of the object

    • ContentLength (integer) --

      Size of the body in bytes.

    • ETag (string) --

      An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL

    • MissingMeta (integer) --

      This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.

    • VersionId (string) --

      Version of the object.

    • CacheControl (string) --

      Specifies caching behavior along the request/reply chain.

    • ContentDisposition (string) --

      Specifies presentational information for the object.

    • ContentEncoding (string) --

      Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.

    • ContentLanguage (string) --

      The language the content is in.

    • ContentRange (string) --

      The portion of the object returned in the response.

    • ContentType (string) --

      A standard MIME type describing the format of the object data.

    • Expires (datetime) --

      The date and time at which the object is no longer cacheable.

    • WebsiteRedirectLocation (string) --

      If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • Metadata (dict) --

      A map of metadata to store with the object in S3.

      • (string) --
        • (string) --
    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • StorageClass (string) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • ReplicationStatus (string) --

    • PartsCount (integer) --

      The count of parts this object has.

    • TagCount (integer) --

      The number of tags, if any, on the object.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
initiate_multipart_upload(**kwargs)

Initiates a multipart upload and returns an upload ID.

Note: After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.

See also: AWS API Documentation

Request Syntax

multipart_upload = object_summary.initiate_multipart_upload(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentType='string',
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Metadata={
        'string': 'string'
    },
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object. The tag-set must be encoded as URL Query parameters
Return type

s3.MultipartUpload

Returns

MultipartUpload resource

load(*args, **kwargs)

Calls s3.Client.head_object to update the attributes of the ObjectSummary resource.

put(**kwargs)

Adds an object to a bucket.

See also: AWS API Documentation

Request Syntax

response = object_summary.put(
    ACL='private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
    Body=b'bytes'|file,
    CacheControl='string',
    ContentDisposition='string',
    ContentEncoding='string',
    ContentLanguage='string',
    ContentLength=123,
    ContentMD5='string',
    ContentType='string',
    Expires=datetime(2015, 1, 1),
    GrantFullControl='string',
    GrantRead='string',
    GrantReadACP='string',
    GrantWriteACP='string',
    Metadata={
        'string': 'string'
    },
    ServerSideEncryption='AES256'|'aws:kms',
    StorageClass='STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    WebsiteRedirectLocation='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    SSEKMSKeyId='string',
    RequestPayer='requester',
    Tagging='string'
)
Parameters
  • ACL (string) -- The canned ACL to apply to the object.
  • Body (bytes or seekable file-like object) -- Object data.
  • CacheControl (string) -- Specifies caching behavior along the request/reply chain.
  • ContentDisposition (string) -- Specifies presentational information for the object.
  • ContentEncoding (string) -- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.
  • ContentLanguage (string) -- The language the content is in.
  • ContentLength (integer) -- Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.
  • ContentMD5 (string) -- The base64-encoded 128-bit MD5 digest of the part data.
  • ContentType (string) -- A standard MIME type describing the format of the object data.
  • Expires (datetime) -- The date and time at which the object is no longer cacheable.
  • GrantFullControl (string) -- Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.
  • GrantRead (string) -- Allows grantee to read the object data and its metadata.
  • GrantReadACP (string) -- Allows grantee to read the object ACL.
  • GrantWriteACP (string) -- Allows grantee to write the ACL for the applicable object.
  • Metadata (dict) --

    A map of metadata to store with the object in S3.

    • (string) --
      • (string) --
  • ServerSideEncryption (string) -- The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
  • StorageClass (string) -- The type of storage to use for the object. Defaults to 'STANDARD'.
  • WebsiteRedirectLocation (string) -- If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • SSEKMSKeyId (string) -- Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • Tagging (string) -- The tag-set for the object. The tag-set must be encoded as URL Query parameters
Return type

dict

Returns

Response Syntax

{
    'Expiration': 'string',
    'ETag': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'VersionId': 'string',
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • 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.

    • ETag (string) --

      Entity tag for the uploaded object.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • VersionId (string) --

      Version of the object.

    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

restore_object(**kwargs)

Restores an archived copy of an object back into Amazon S3

See also: AWS API Documentation

Request Syntax

response = object_summary.restore_object(
    VersionId='string',
    RestoreRequest={
        'Days': 123,
        'GlacierJobParameters': {
            'Tier': 'Standard'|'Bulk'|'Expedited'
        },
        'Type': 'SELECT',
        'Tier': 'Standard'|'Bulk'|'Expedited',
        'Description': 'string',
        'SelectParameters': {
            'InputSerialization': {
                'CSV': {
                    'FileHeaderInfo': 'USE'|'IGNORE'|'NONE',
                    'Comments': 'string',
                    'QuoteEscapeCharacter': 'string',
                    'RecordDelimiter': 'string',
                    'FieldDelimiter': 'string',
                    'QuoteCharacter': 'string',
                    'AllowQuotedRecordDelimiter': True|False
                },
                'CompressionType': 'NONE'|'GZIP'|'BZIP2',
                'JSON': {
                    'Type': 'DOCUMENT'|'LINES'
                }
            },
            'ExpressionType': 'SQL',
            'Expression': 'string',
            'OutputSerialization': {
                'CSV': {
                    'QuoteFields': 'ALWAYS'|'ASNEEDED',
                    'QuoteEscapeCharacter': 'string',
                    'RecordDelimiter': 'string',
                    'FieldDelimiter': 'string',
                    'QuoteCharacter': 'string'
                },
                'JSON': {
                    'RecordDelimiter': 'string'
                }
            }
        },
        'OutputLocation': {
            'S3': {
                'BucketName': 'string',
                'Prefix': 'string',
                'Encryption': {
                    'EncryptionType': 'AES256'|'aws:kms',
                    'KMSKeyId': 'string',
                    'KMSContext': 'string'
                },
                'CannedACL': 'private'|'public-read'|'public-read-write'|'authenticated-read'|'aws-exec-read'|'bucket-owner-read'|'bucket-owner-full-control',
                'AccessControlList': [
                    {
                        'Grantee': {
                            'DisplayName': 'string',
                            'EmailAddress': 'string',
                            'ID': 'string',
                            'Type': 'CanonicalUser'|'AmazonCustomerByEmail'|'Group',
                            'URI': 'string'
                        },
                        'Permission': 'FULL_CONTROL'|'WRITE'|'WRITE_ACP'|'READ'|'READ_ACP'
                    },
                ],
                'Tagging': {
                    'TagSet': [
                        {
                            'Key': 'string',
                            'Value': 'string'
                        },
                    ]
                },
                'UserMetadata': [
                    {
                        'Name': 'string',
                        'Value': 'string'
                    },
                ],
                'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA'
            }
        }
    },
    RequestPayer='requester'
)
Parameters
  • VersionId (string) --
  • RestoreRequest (dict) --

    Container for restore job parameters.

    • Days (integer) --

      Lifetime of the active copy in days. Do not use with restores that specify OutputLocation.

    • GlacierJobParameters (dict) --

      Glacier related parameters pertaining to this job. Do not use with restores that specify OutputLocation.

      • Tier (string) -- [REQUIRED]

        Glacier retrieval tier at which the restore will be processed.

    • Type (string) --

      Type of restore request.

    • Tier (string) --

      Glacier retrieval tier at which the restore will be processed.

    • Description (string) --

      The optional description for the job.

    • SelectParameters (dict) --

      Describes the parameters for Select job types.

      • InputSerialization (dict) -- [REQUIRED]

        Describes the serialization format of the object.

        • CSV (dict) --

          Describes the serialization of a CSV-encoded object.

          • FileHeaderInfo (string) --

            Describes the first line of input. Valid values: None, Ignore, Use.

          • Comments (string) --

            Single character used to indicate a row should be ignored when present at the start of a row.

          • QuoteEscapeCharacter (string) --

            Single character used for escaping the quote character inside an already escaped value.

          • RecordDelimiter (string) --

            Value used to separate individual records.

          • FieldDelimiter (string) --

            Value used to separate individual fields in a record.

          • QuoteCharacter (string) --

            Value used for escaping where the field delimiter is part of the value.

          • AllowQuotedRecordDelimiter (boolean) --

            Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.

        • CompressionType (string) --

          Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.

        • JSON (dict) --

          Specifies JSON as object's input serialization format.

          • Type (string) --

            The type of JSON. Valid values: Document, Lines.

      • ExpressionType (string) -- [REQUIRED]

        The type of the provided expression (e.g., SQL).

      • Expression (string) -- [REQUIRED]

        The expression that is used to query the object.

      • OutputSerialization (dict) -- [REQUIRED]

        Describes how the results of the Select job are serialized.

        • CSV (dict) --

          Describes the serialization of CSV-encoded Select results.

          • QuoteFields (string) --

            Indicates whether or not all output fields should be quoted.

          • QuoteEscapeCharacter (string) --

            Single character used for escaping the quote character inside an already escaped value.

          • RecordDelimiter (string) --

            Value used to separate individual records.

          • FieldDelimiter (string) --

            Value used to separate individual fields in a record.

          • QuoteCharacter (string) --

            Value used for escaping where the field delimiter is part of the value.

        • JSON (dict) --

          Specifies JSON as request's output serialization format.

          • RecordDelimiter (string) --

            The value used to separate individual records in the output.

    • OutputLocation (dict) --

      Describes the location where the restore job's output is stored.

      • S3 (dict) --

        Describes an S3 location that will receive the results of the restore request.

        • BucketName (string) -- [REQUIRED]

          The name of the bucket where the restore results will be placed.

        • Prefix (string) -- [REQUIRED]

          The prefix that is prepended to the restore results for this request.

        • Encryption (dict) --

          Describes the server-side encryption that will be applied to the restore results.

          • EncryptionType (string) -- [REQUIRED]

            The server-side encryption algorithm used when storing job results in Amazon S3 (e.g., AES256, aws:kms).

          • KMSKeyId (string) --

            If the encryption type is aws:kms, this optional value specifies the AWS KMS key ID to use for encryption of job results.

          • KMSContext (string) --

            If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.

        • CannedACL (string) --

          The canned ACL to apply to the restore results.

        • AccessControlList (list) --

          A list of grants that control access to the staged results.

          • (dict) --
            • Grantee (dict) --
              • DisplayName (string) --

                Screen name of the grantee.

              • EmailAddress (string) --

                Email address of the grantee.

              • ID (string) --

                The canonical user ID of the grantee.

              • Type (string) -- [REQUIRED]

                Type of grantee

              • URI (string) --

                URI of the grantee group.

            • Permission (string) --

              Specifies the permission given to the grantee.

        • Tagging (dict) --

          The tag-set that is applied to the restore results.

          • TagSet (list) -- [REQUIRED]
            • (dict) --
              • Key (string) -- [REQUIRED]

                Name of the tag.

              • Value (string) -- [REQUIRED]

                Value of the tag.

        • UserMetadata (list) --

          A list of metadata to store with the restore results in S3.

          • (dict) --

            A metadata key-value pair to store with an object.

            • Name (string) --
            • Value (string) --
        • StorageClass (string) --

          The class of storage used to store the restore results.

  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'RequestCharged': 'requester',
    'RestoreOutputPath': 'string'
}

Response Structure

  • (dict) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • RestoreOutputPath (string) --

      Indicates the path in the provided S3 output location where Select results will be restored to.

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Acl()

Creates a ObjectAcl resource.:

object_acl = object_summary.Acl()
Return type
S3.ObjectAcl
Returns
A ObjectAcl resource
Bucket()

Creates a Bucket resource.:

bucket = object_summary.Bucket()
Return type
S3.Bucket
Returns
A Bucket resource
MultipartUpload(id)

Creates a MultipartUpload resource.:

multipart_upload = object_summary.MultipartUpload('id')
Parameters
id (string) -- The MultipartUpload's id identifier. This must be set.
Return type
S3.MultipartUpload
Returns
A MultipartUpload resource
Object()

Creates a Object resource.:

object = object_summary.Object()
Return type
S3.Object
Returns
A Object resource
Version(id)

Creates a ObjectVersion resource.:

object_version = object_summary.Version('id')
Parameters
id (string) -- The Version's id identifier. This must be set.
Return type
S3.ObjectVersion
Returns
A ObjectVersion resource

Waiters

Waiters provide an interface to wait for a resource to reach a specific state. For more information about waiters refer to the Resources Introduction Guide.

wait_until_exists(**kwargs)

Waits until this ObjectSummary is exists. This method calls S3.Waiter.object_exists.wait() which polls. S3.Client.head_object() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

object_summary.wait_until_exists(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
Returns

None

wait_until_not_exists(**kwargs)

Waits until this ObjectSummary is not exists. This method calls S3.Waiter.object_not_exists.wait() which polls. S3.Client.head_object() every 5 seconds until a successful state is reached. An error is returned after 20 failed checks.

See also: AWS API Documentation

Request Syntax

object_summary.wait_until_not_exists(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    VersionId='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • VersionId (string) -- VersionId used to reference a specific version of the object.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
Returns

None

ObjectVersion

class S3.ObjectVersion(bucket_name, object_key, id)

A resource representing an Amazon Simple Storage Service (S3) ObjectVersion:

import boto3

s3 = boto3.resource('s3')
object_version = s3.ObjectVersion('bucket_name','object_key','id')
Parameters
  • bucket_name (string) -- The ObjectVersion's bucket_name identifier. This must be set.
  • object_key (string) -- The ObjectVersion's object_key identifier. This must be set.
  • id (string) -- The ObjectVersion's id identifier. This must be set.

These are the resource's available identifiers:

These are the resource's available attributes:

These are the resource's available actions:

These are the resource's available sub-resources:

Identifiers

Identifiers are properties of a resource that are set upon instantation of the resource. For more information about identifiers refer to the Resources Introduction Guide.

bucket_name

(string) The ObjectVersion's bucket_name identifier. This must be set.

object_key

(string) The ObjectVersion's object_key identifier. This must be set.

id

(string) The ObjectVersion's id identifier. This must be set.

Attributes

Attributes provide access to the properties of a resource. Attributes are lazy-loaded the first time one is accessed via the load() method. For more information about attributes refer to the Resources Introduction Guide.

e_tag
  • (string) --
is_latest
  • (boolean) --

    Specifies whether the object is (true) or is not (false) the latest version of an object.

key
  • (string) --

    The object key.

last_modified
  • (datetime) --

    Date and time the object was last modified.

owner
  • (dict) --
    • DisplayName (string) --
    • ID (string) --
size
  • (integer) --

    Size in bytes of the object.

storage_class
  • (string) --

    The class of storage used to store the object.

version_id
  • (string) --

    Version ID of an object.

Actions

Actions call operations on resources. They may automatically handle the passing in of arguments set from identifiers and some attributes. For more information about actions refer to the Resources Introduction Guide.

delete(**kwargs)

Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.

See also: AWS API Documentation

Request Syntax

response = object_version.delete(
    MFA='string',
    RequestPayer='requester'
)
Parameters
  • MFA (string) -- The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
Return type

dict

Returns

Response Syntax

{
    'DeleteMarker': True|False,
    'VersionId': 'string',
    'RequestCharged': 'requester'
}

Response Structure

  • (dict) --

    • DeleteMarker (boolean) --

      Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.

    • VersionId (string) --

      Returns the version ID of the delete marker created as a result of the DELETE operation.

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

get(**kwargs)

Retrieves objects from Amazon S3.

See also: AWS API Documentation

Request Syntax

response = object_version.get(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    ResponseCacheControl='string',
    ResponseContentDisposition='string',
    ResponseContentEncoding='string',
    ResponseContentLanguage='string',
    ResponseContentType='string',
    ResponseExpires=datetime(2015, 1, 1),
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • ResponseCacheControl (string) -- Sets the Cache-Control header of the response.
  • ResponseContentDisposition (string) -- Sets the Content-Disposition header of the response
  • ResponseContentEncoding (string) -- Sets the Content-Encoding header of the response.
  • ResponseContentLanguage (string) -- Sets the Content-Language header of the response.
  • ResponseContentType (string) -- Sets the Content-Type header of the response.
  • ResponseExpires (datetime) -- Sets the Expires header of the response.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' GET request for the part specified. Useful for downloading just a part of an object.
Return type

dict

Returns

Response Syntax

{
    'Body': StreamingBody(),
    'DeleteMarker': True|False,
    'AcceptRanges': 'string',
    'Expiration': 'string',
    'Restore': 'string',
    'LastModified': datetime(2015, 1, 1),
    'ContentLength': 123,
    'ETag': 'string',
    'MissingMeta': 123,
    'VersionId': 'string',
    'CacheControl': 'string',
    'ContentDisposition': 'string',
    'ContentEncoding': 'string',
    'ContentLanguage': 'string',
    'ContentRange': 'string',
    'ContentType': 'string',
    'Expires': datetime(2015, 1, 1),
    'WebsiteRedirectLocation': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'Metadata': {
        'string': 'string'
    },
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester',
    'ReplicationStatus': 'COMPLETE'|'PENDING'|'FAILED'|'REPLICA',
    'PartsCount': 123,
    'TagCount': 123
}

Response Structure

  • (dict) --

    • Body (StreamingBody) --

      Object data.

    • DeleteMarker (boolean) --

      Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.

    • AcceptRanges (string) --

    • Expiration (string) --

      If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.

    • Restore (string) --

      Provides information about object restoration operation and expiration time of the restored object copy.

    • LastModified (datetime) --

      Last modified date of the object

    • ContentLength (integer) --

      Size of the body in bytes.

    • ETag (string) --

      An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL

    • MissingMeta (integer) --

      This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.

    • VersionId (string) --

      Version of the object.

    • CacheControl (string) --

      Specifies caching behavior along the request/reply chain.

    • ContentDisposition (string) --

      Specifies presentational information for the object.

    • ContentEncoding (string) --

      Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.

    • ContentLanguage (string) --

      The language the content is in.

    • ContentRange (string) --

      The portion of the object returned in the response.

    • ContentType (string) --

      A standard MIME type describing the format of the object data.

    • Expires (datetime) --

      The date and time at which the object is no longer cacheable.

    • WebsiteRedirectLocation (string) --

      If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • Metadata (dict) --

      A map of metadata to store with the object in S3.

      • (string) --
        • (string) --
    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • StorageClass (string) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • ReplicationStatus (string) --

    • PartsCount (integer) --

      The count of parts this object has.

    • TagCount (integer) --

      The number of tags, if any, on the object.

get_available_subresources()

Returns a list of all the available sub-resources for this Resource.

Returns
A list containing the name of each sub-resource for this resource
Return type
list of str
head(**kwargs)

The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you're only interested in an object's metadata. To use HEAD, you must have READ access to the object.

See also: AWS API Documentation

Request Syntax

response = object_version.head(
    IfMatch='string',
    IfModifiedSince=datetime(2015, 1, 1),
    IfNoneMatch='string',
    IfUnmodifiedSince=datetime(2015, 1, 1),
    Range='string',
    SSECustomerAlgorithm='string',
    SSECustomerKey='string',
    RequestPayer='requester',
    PartNumber=123
)
Parameters
  • IfMatch (string) -- Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).
  • IfModifiedSince (datetime) -- Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).
  • IfNoneMatch (string) -- Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).
  • IfUnmodifiedSince (datetime) -- Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).
  • Range (string) -- Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.
  • SSECustomerAlgorithm (string) -- Specifies the algorithm to use to when encrypting the object (e.g., AES256).
  • SSECustomerKey (string) -- Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm header.
  • SSECustomerKeyMD5 (string) --

    Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.

    Please note that this parameter is automatically populated if it is not provided. Including this parameter is not required
  • RequestPayer (string) -- Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
  • PartNumber (integer) -- Part number of the object being read. This is a positive integer between 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. Useful querying about the size of the part and the number of parts in this object.
Return type

dict

Returns

Response Syntax

{
    'DeleteMarker': True|False,
    'AcceptRanges': 'string',
    'Expiration': 'string',
    'Restore': 'string',
    'LastModified': datetime(2015, 1, 1),
    'ContentLength': 123,
    'ETag': 'string',
    'MissingMeta': 123,
    'VersionId': 'string',
    'CacheControl': 'string',
    'ContentDisposition': 'string',
    'ContentEncoding': 'string',
    'ContentLanguage': 'string',
    'ContentType': 'string',
    'Expires': datetime(2015, 1, 1),
    'WebsiteRedirectLocation': 'string',
    'ServerSideEncryption': 'AES256'|'aws:kms',
    'Metadata': {
        'string': 'string'
    },
    'SSECustomerAlgorithm': 'string',
    'SSECustomerKeyMD5': 'string',
    'SSEKMSKeyId': 'string',
    'StorageClass': 'STANDARD'|'REDUCED_REDUNDANCY'|'STANDARD_IA'|'ONEZONE_IA',
    'RequestCharged': 'requester',
    'ReplicationStatus': 'COMPLETE'|'PENDING'|'FAILED'|'REPLICA',
    'PartsCount': 123
}

Response Structure

  • (dict) --

    • DeleteMarker (boolean) --

      Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.

    • AcceptRanges (string) --

    • Expiration (string) --

      If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.

    • Restore (string) --

      Provides information about object restoration operation and expiration time of the restored object copy.

    • LastModified (datetime) --

      Last modified date of the object

    • ContentLength (integer) --

      Size of the body in bytes.

    • ETag (string) --

      An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL

    • MissingMeta (integer) --

      This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.

    • VersionId (string) --

      Version of the object.

    • CacheControl (string) --

      Specifies caching behavior along the request/reply chain.

    • ContentDisposition (string) --

      Specifies presentational information for the object.

    • ContentEncoding (string) --

      Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.

    • ContentLanguage (string) --

      The language the content is in.

    • ContentType (string) --

      A standard MIME type describing the format of the object data.

    • Expires (datetime) --

      The date and time at which the object is no longer cacheable.

    • WebsiteRedirectLocation (string) --

      If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.

    • ServerSideEncryption (string) --

      The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

    • Metadata (dict) --

      A map of metadata to store with the object in S3.

      • (string) --
        • (string) --
    • SSECustomerAlgorithm (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

    • SSECustomerKeyMD5 (string) --

      If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

    • SSEKMSKeyId (string) --

      If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

    • StorageClass (string) --

    • RequestCharged (string) --

      If present, indicates that the requester was successfully charged for the request.

    • ReplicationStatus (string) --

    • PartsCount (integer) --

      The count of parts this object has.

Sub-resources

Sub-resources are methods that create a new instance of a child resource. This resource's identifiers get passed along to the child. For more information about sub-resources refer to the Resources Introduction Guide.

Object()

Creates a Object resource.:

object = object_version.Object()
Return type
S3.Object
Returns
A Object resource

Examples

List objects in an Amazon S3 bucket

The following example shows how to use an Amazon S3 bucket resource to list the objects in the bucket.

import boto3

s3 = boto3.resource('s3')
bucket = s3.Bucket('my-bucket')
for obj in bucket.objects.all():
    print(obj.key)

List top-level common prefixes in Amazon S3 bucket

This example shows how to list all of the top-level common prefixes in an Amazon S3 bucket:

import boto3

client = boto3.client('s3')
paginator = client.get_paginator('list_objects')
result = paginator.paginate(Bucket='my-bucket', Delimiter='/')
for prefix in result.search('CommonPrefixes'):
    print(prefix.get('Prefix'))

Restore Glacier objects in an Amazon S3 bucket

The following example shows how to initiate restoration of glacier objects in an Amazon S3 bucket, determine if a restoration is on-going, and determine if a restoration is finished.

import boto3

s3 = boto3.resource('s3')
bucket = s3.Bucket('glacier-bucket')
for obj_sum in bucket.objects.all():
    obj = s3.Object(obj_sum.bucket_name, obj_sum.key)
    if obj.storage_class == 'GLACIER':
        # Try to restore the object if the storage class is glacier and
        # the object does not have a completed or ongoing restoration
        # request.
        if obj.restore is None:
            print('Submitting restoration request: %s' % obj.key)
            obj.restore_object(RestoreRequest={'Days': 1})
        # Print out objects whose restoration is on-going
        elif 'ongoing-request="true"' in obj.restore:
            print('Restoration in-progress: %s' % obj.key)
        # Print out objects whose restoration is complete
        elif 'ongoing-request="false"' in obj.restore:
            print('Restoration complete: %s' % obj.key)

Uploading/downloading files using SSE KMS

This example shows how to use SSE-KMS to upload objects using server side encryption with a key managed by KMS.

We can either use the default KMS master key, or create a custom key in AWS and use it to encrypt the object by passing in its key id.

With KMS, nothing else needs to be provided for getting the object; S3 already knows how to decrypt the object.

import boto3
import os

BUCKET = 'your-bucket-name'
s3 = boto3.client('s3')
keyid = '<the key id>'

print("Uploading S3 object with SSE-KMS")
s3.put_object(Bucket=BUCKET,
              Key='encrypt-key',
              Body=b'foobar',
              ServerSideEncryption='aws:kms',
              # Optional: SSEKMSKeyId
              SSEKMSKeyId=keyid)
print("Done")

# Getting the object:
print("Getting S3 object...")
response = s3.get_object(Bucket=BUCKET,
                         Key='encrypt-key')
print("Done, response body:")
print(response['Body'].read())

Uploading/downloading files using SSE Customer Keys

This example shows how to use SSE-C to upload objects using server side encryption with a customer provided key.

First, we'll need a 32 byte key. For this example, we'll randomly generate a key but you can use any 32 byte key you want. Remember, you must the same key to download the object. If you lose the encryption key, you lose the object.

Also note how we don't have to provide the SSECustomerKeyMD5. Boto3 will automatically compute this value for us.

import boto3
import os

BUCKET = 'your-bucket-name'
KEY = os.urandom(32)
s3 = boto3.client('s3')

print("Uploading S3 object with SSE-C")
s3.put_object(Bucket=BUCKET,
              Key='encrypt-key',
              Body=b'foobar',
              SSECustomerKey=KEY,
              SSECustomerAlgorithm='AES256')
print("Done")

# Getting the object:
print("Getting S3 object...")
# Note how we're using the same ``KEY`` we
# created earlier.
response = s3.get_object(Bucket=BUCKET,
                         Key='encrypt-key',
                         SSECustomerKey=KEY,
                         SSECustomerAlgorithm='AES256')
print("Done, response body:")
print(response['Body'].read())