Struct aws_sdk_iot::types::S3Action
source · #[non_exhaustive]pub struct S3Action {
pub role_arn: String,
pub bucket_name: String,
pub key: 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: String
The ARN of the IAM role that grants access.
bucket_name: String
The Amazon S3 bucket.
key: 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) -> &str
pub fn bucket_name(&self) -> &str
The Amazon S3 bucket.
sourcepub fn key(&self) -> &str
pub fn key(&self) -> &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 Freeze for S3Action
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.