Data.Cloud.AmazonAPI.TAmazonACLType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TAmazonACLType = (amzbaNotSpecified, amzbaPrivate, amzbaPublicRead, amzbaPublicReadWrite,
amzbaAuthenticatedRead, amzbaBucketOwnerRead, amzbaBucketOwnerFullControl);

C++

enum DECLSPEC_DENUM TAmazonACLType : unsigned char { amzbaNotSpecified, amzbaPrivate, amzbaPublicRead, amzbaPublicReadWrite, amzbaAuthenticatedRead, amzbaBucketOwnerRead, amzbaBucketOwnerFullControl };

Properties

Type Visibility Source Unit Parent
enum public
Data.Cloud.AmazonAPI.pas
Data.Cloud.AmazonAPI.hpp
Data.Cloud.AmazonAPI Data.Cloud.AmazonAPI

Description

Bucket/Object ACL types.

TAmazonACLType is an enumeration that specifies the Bucket/Object (Access Control List) ACL types.

The following values are available:

Value Description

amzbaNotSpecified

The ACL for the Bucket/Object is not specified.

amzbaPrivate

The Bucket/Object is private.

amzbaPublicRead

The Bucket/Object can be read without authentication.

amzbaPublicReadWrite

The Bucket/Object can be read and written without authentication.

amzbaAuthenticatedRead

The Bucket/Object can be read only with authentication.

amzbaBucketOwnerRead

The Bucket/Object can be read only by the owner.

amzbaBucketOwnerFullControl

The owner has full control over the Bucket/Object.

See Also