pub struct InventoryArgs {
pub bucket: Output<String>,
pub destination: Output<InventoryDestination>,
pub enabled: Output<Option<bool>>,
pub filter: Output<Option<InventoryFilter>>,
pub included_object_versions: Output<String>,
pub name: Output<Option<String>>,
pub optional_fields: Output<Option<Vec<String>>>,
pub schedule: Output<InventorySchedule>,
}
Fields§
§bucket: Output<String>
Name of the source bucket that inventory lists the objects for.
destination: Output<InventoryDestination>
Contains information about where to publish the inventory results (documented below).
enabled: Output<Option<bool>>
Specifies whether the inventory is enabled or disabled.
filter: Output<Option<InventoryFilter>>
Specifies an inventory filter. The inventory only includes objects that meet the filter’s criteria (documented below).
included_object_versions: Output<String>
Object versions to include in the inventory list. Valid values: All
, Current
.
name: Output<Option<String>>
Unique identifier of the inventory configuration for the bucket.
optional_fields: Output<Option<Vec<String>>>
List of optional fields that are included in the inventory results. Please refer to the S3 documentation for more details.
schedule: Output<InventorySchedule>
Specifies the schedule for generating inventory results (documented below).
Implementations§
source§impl InventoryArgs
impl InventoryArgs
sourcepub fn builder() -> InventoryArgsBuilder
pub fn builder() -> InventoryArgsBuilder
Create an instance of InventoryArgs
using the builder syntax
Trait Implementations§
source§impl Clone for InventoryArgs
impl Clone for InventoryArgs
source§fn clone(&self) -> InventoryArgs
fn clone(&self) -> InventoryArgs
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 InventoryArgs
impl RefUnwindSafe for InventoryArgs
impl Send for InventoryArgs
impl Sync for InventoryArgs
impl Unpin for InventoryArgs
impl UnwindSafe for InventoryArgs
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
)