pub struct BucketAclV2Args {
pub access_control_policy: Output<Option<BucketAclV2AccessControlPolicy>>,
pub acl: Output<Option<String>>,
pub bucket: Output<String>,
pub expected_bucket_owner: Output<Option<String>>,
}
Fields§
§access_control_policy: Output<Option<BucketAclV2AccessControlPolicy>>
Configuration block that sets the ACL permissions for an object per grantee. See below.
acl: Output<Option<String>>
Specifies the Canned ACL to apply to the bucket. Valid values: private
, public-read
, public-read-write
, aws-exec-read
, authenticated-read
, bucket-owner-read
, bucket-owner-full-control
, log-delivery-write
. Full details are available on the AWS documentation.
bucket: Output<String>
Bucket to which to apply the ACL.
expected_bucket_owner: Output<Option<String>>
Account ID of the expected bucket owner.
Implementations§
source§impl BucketAclV2Args
impl BucketAclV2Args
sourcepub fn builder() -> BucketAclV2ArgsBuilder
pub fn builder() -> BucketAclV2ArgsBuilder
Create an instance of BucketAclV2Args
using the builder syntax
Trait Implementations§
source§impl Clone for BucketAclV2Args
impl Clone for BucketAclV2Args
source§fn clone(&self) -> BucketAclV2Args
fn clone(&self) -> BucketAclV2Args
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for BucketAclV2Args
impl RefUnwindSafe for BucketAclV2Args
impl Send for BucketAclV2Args
impl Sync for BucketAclV2Args
impl Unpin for BucketAclV2Args
impl UnwindSafe for BucketAclV2Args
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)