Struct aws_sdk_m2::types::GdgAttributes
source · #[non_exhaustive]pub struct GdgAttributes {
pub limit: i32,
pub roll_disposition: Option<String>,
}Expand description
The required attributes for a generation data group data set. A generation data set is one of a collection of successive, historically related, catalogued data sets that together are known as a generation data group (GDG). Use this structure when you want to import a GDG. For more information on GDG, see Generation data sets.
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.limit: i32The maximum number of generation data sets, up to 255, in a GDG.
roll_disposition: Option<String>The disposition of the data set in the catalog.
Implementations§
source§impl GdgAttributes
impl GdgAttributes
source§impl GdgAttributes
impl GdgAttributes
sourcepub fn builder() -> GdgAttributesBuilder
pub fn builder() -> GdgAttributesBuilder
Creates a new builder-style object to manufacture GdgAttributes.
Trait Implementations§
source§impl Clone for GdgAttributes
impl Clone for GdgAttributes
source§fn clone(&self) -> GdgAttributes
fn clone(&self) -> GdgAttributes
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 Debug for GdgAttributes
impl Debug for GdgAttributes
source§impl PartialEq for GdgAttributes
impl PartialEq for GdgAttributes
source§fn eq(&self, other: &GdgAttributes) -> bool
fn eq(&self, other: &GdgAttributes) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GdgAttributes
Auto Trait Implementations§
impl RefUnwindSafe for GdgAttributes
impl Send for GdgAttributes
impl Sync for GdgAttributes
impl Unpin for GdgAttributes
impl UnwindSafe for GdgAttributes
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.