Struct aws_sdk_iot::types::S3Action
source · #[non_exhaustive]pub struct S3Action {
pub role_arn: Option<String>,
pub bucket_name: Option<String>,
pub key: Option<String>,
pub canned_acl: Option<CannedAccessControlList>,
}
Expand description
Describes an action to write data to an Amazon S3 bucket.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.role_arn: Option<String>
The ARN of the IAM role that grants access.
bucket_name: Option<String>
The Amazon S3 bucket.
key: Option<String>
The object key. For more information, see Actions, resources, and condition keys for Amazon S3.
canned_acl: Option<CannedAccessControlList>
The Amazon S3 canned ACL that controls access to the object identified by the object key. For more information, see S3 canned ACLs.
Implementations§
source§impl S3Action
impl S3Action
sourcepub fn bucket_name(&self) -> Option<&str>
pub fn bucket_name(&self) -> Option<&str>
The Amazon S3 bucket.
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
The object key. For more information, see Actions, resources, and condition keys for Amazon S3.
sourcepub fn canned_acl(&self) -> Option<&CannedAccessControlList>
pub fn canned_acl(&self) -> Option<&CannedAccessControlList>
The Amazon S3 canned ACL that controls access to the object identified by the object key. For more information, see S3 canned ACLs.
Trait Implementations§
source§impl PartialEq for S3Action
impl PartialEq for S3Action
impl StructuralPartialEq for S3Action
Auto Trait Implementations§
impl RefUnwindSafe for S3Action
impl Send for S3Action
impl Sync for S3Action
impl Unpin for S3Action
impl UnwindSafe for S3Action
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more