pub struct DistributionList {
pub is_truncated: bool,
pub items: Option<Vec<DistributionSummary>>,
pub marker: String,
pub max_items: i64,
pub next_marker: Option<String>,
pub quantity: i64,
}
Expand description
A distribution list.
Fields§
§is_truncated: bool
A flag that indicates whether more distributions remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker
request parameter to retrieve more distributions in the list.
items: Option<Vec<DistributionSummary>>
A complex type that contains one DistributionSummary
element for each distribution that was created by the current AWS account.
marker: String
The value you provided for the Marker
request parameter.
max_items: i64
The value you provided for the MaxItems
request parameter.
next_marker: Option<String>
If IsTruncated
is true
, this element is present and contains the value you can use for the Marker
request parameter to continue listing your distributions where they left off.
quantity: i64
The number of distributions that were created by the current AWS account.
Trait Implementations§
Source§impl Clone for DistributionList
impl Clone for DistributionList
Source§fn clone(&self) -> DistributionList
fn clone(&self) -> DistributionList
Returns a duplicate 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 DistributionList
impl Debug for DistributionList
Source§impl Default for DistributionList
impl Default for DistributionList
Source§fn default() -> DistributionList
fn default() -> DistributionList
Returns the “default value” for a type. Read more
Source§impl PartialEq for DistributionList
impl PartialEq for DistributionList
impl StructuralPartialEq for DistributionList
Auto Trait Implementations§
impl Freeze for DistributionList
impl RefUnwindSafe for DistributionList
impl Send for DistributionList
impl Sync for DistributionList
impl Unpin for DistributionList
impl UnwindSafe for DistributionList
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