Struct aws_sdk_elastictranscoder::types::Permission
source · #[non_exhaustive]pub struct Permission {
pub grantee_type: Option<String>,
pub grantee: Option<String>,
pub access: Option<Vec<String>>,
}
Expand description
The Permission
structure.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.grantee_type: Option<String>
The type of value that appears in the Grantee object:
-
Canonical
: Either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution.A canonical user ID is not the same as an AWS account number.
-
Email
: The registered email address of an AWS account. -
Group
: One of the following predefined Amazon S3 groups:AllUsers
,AuthenticatedUsers
, orLogDelivery
.
grantee: Option<String>
The AWS user or group that you want to have access to transcoded files and playlists. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group.
access: Option<Vec<String>>
The permission that you want to give to the AWS user that is listed in Grantee. Valid values include:
-
READ
: The grantee can read the thumbnails and metadata for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. -
READ_ACP
: The grantee can read the object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. -
WRITE_ACP
: The grantee can write the ACL for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. -
FULL_CONTROL
: The grantee has READ, READ_ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.
Implementations§
source§impl Permission
impl Permission
sourcepub fn grantee_type(&self) -> Option<&str>
pub fn grantee_type(&self) -> Option<&str>
The type of value that appears in the Grantee object:
-
Canonical
: Either the canonical user ID for an AWS account or an origin access identity for an Amazon CloudFront distribution.A canonical user ID is not the same as an AWS account number.
-
Email
: The registered email address of an AWS account. -
Group
: One of the following predefined Amazon S3 groups:AllUsers
,AuthenticatedUsers
, orLogDelivery
.
sourcepub fn grantee(&self) -> Option<&str>
pub fn grantee(&self) -> Option<&str>
The AWS user or group that you want to have access to transcoded files and playlists. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group.
sourcepub fn access(&self) -> &[String]
pub fn access(&self) -> &[String]
The permission that you want to give to the AWS user that is listed in Grantee. Valid values include:
-
READ
: The grantee can read the thumbnails and metadata for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. -
READ_ACP
: The grantee can read the object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. -
WRITE_ACP
: The grantee can write the ACL for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. -
FULL_CONTROL
: The grantee has READ, READ_ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .access.is_none()
.
source§impl Permission
impl Permission
sourcepub fn builder() -> PermissionBuilder
pub fn builder() -> PermissionBuilder
Creates a new builder-style object to manufacture Permission
.
Trait Implementations§
source§impl Clone for Permission
impl Clone for Permission
source§fn clone(&self) -> Permission
fn clone(&self) -> Permission
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Permission
impl Debug for Permission
source§impl PartialEq for Permission
impl PartialEq for Permission
source§fn eq(&self, other: &Permission) -> bool
fn eq(&self, other: &Permission) -> bool
self
and other
values to be equal, and is used
by ==
.