Struct aws_sdk_s3control::operation::put_storage_lens_configuration::PutStorageLensConfigurationInput
source · #[non_exhaustive]pub struct PutStorageLensConfigurationInput {
pub config_id: Option<String>,
pub account_id: Option<String>,
pub storage_lens_configuration: Option<StorageLensConfiguration>,
pub tags: Option<Vec<StorageLensTag>>,
}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.config_id: Option<String>The ID of the S3 Storage Lens configuration.
account_id: Option<String>The account ID of the requester.
storage_lens_configuration: Option<StorageLensConfiguration>The S3 Storage Lens configuration.
The tag set of the S3 Storage Lens configuration.
You can set up to a maximum of 50 tags.
Implementations§
source§impl PutStorageLensConfigurationInput
impl PutStorageLensConfigurationInput
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The account ID of the requester.
sourcepub fn storage_lens_configuration(&self) -> Option<&StorageLensConfiguration>
pub fn storage_lens_configuration(&self) -> Option<&StorageLensConfiguration>
The S3 Storage Lens configuration.
The tag set of the S3 Storage Lens configuration.
You can set up to a maximum of 50 tags.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl PutStorageLensConfigurationInput
impl PutStorageLensConfigurationInput
sourcepub fn builder() -> PutStorageLensConfigurationInputBuilder
pub fn builder() -> PutStorageLensConfigurationInputBuilder
Creates a new builder-style object to manufacture PutStorageLensConfigurationInput.
Trait Implementations§
source§impl Clone for PutStorageLensConfigurationInput
impl Clone for PutStorageLensConfigurationInput
source§fn clone(&self) -> PutStorageLensConfigurationInput
fn clone(&self) -> PutStorageLensConfigurationInput
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 moresource§impl PartialEq for PutStorageLensConfigurationInput
impl PartialEq for PutStorageLensConfigurationInput
source§fn eq(&self, other: &PutStorageLensConfigurationInput) -> bool
fn eq(&self, other: &PutStorageLensConfigurationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutStorageLensConfigurationInput
Auto Trait Implementations§
impl Freeze for PutStorageLensConfigurationInput
impl RefUnwindSafe for PutStorageLensConfigurationInput
impl Send for PutStorageLensConfigurationInput
impl Sync for PutStorageLensConfigurationInput
impl Unpin for PutStorageLensConfigurationInput
impl UnwindSafe for PutStorageLensConfigurationInput
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.