#[non_exhaustive]pub struct GetExclusionsPreviewOutput {
pub preview_status: PreviewStatus,
pub exclusion_previews: Option<Vec<ExclusionPreview>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.preview_status: PreviewStatusSpecifies the status of the request to generate an exclusions preview.
exclusion_previews: Option<Vec<ExclusionPreview>>Information about the exclusions included in the preview.
next_token: Option<String>When a response is generated, if there is more data to be listed, this parameters is present in the response and contains the value to use for the nextToken parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.
Implementations§
source§impl GetExclusionsPreviewOutput
impl GetExclusionsPreviewOutput
sourcepub fn preview_status(&self) -> &PreviewStatus
pub fn preview_status(&self) -> &PreviewStatus
Specifies the status of the request to generate an exclusions preview.
sourcepub fn exclusion_previews(&self) -> &[ExclusionPreview]
pub fn exclusion_previews(&self) -> &[ExclusionPreview]
Information about the exclusions included in the preview.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .exclusion_previews.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When a response is generated, if there is more data to be listed, this parameters is present in the response and contains the value to use for the nextToken parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null.
source§impl GetExclusionsPreviewOutput
impl GetExclusionsPreviewOutput
sourcepub fn builder() -> GetExclusionsPreviewOutputBuilder
pub fn builder() -> GetExclusionsPreviewOutputBuilder
Creates a new builder-style object to manufacture GetExclusionsPreviewOutput.
Trait Implementations§
source§impl Clone for GetExclusionsPreviewOutput
impl Clone for GetExclusionsPreviewOutput
source§fn clone(&self) -> GetExclusionsPreviewOutput
fn clone(&self) -> GetExclusionsPreviewOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetExclusionsPreviewOutput
impl Debug for GetExclusionsPreviewOutput
source§impl PartialEq for GetExclusionsPreviewOutput
impl PartialEq for GetExclusionsPreviewOutput
source§fn eq(&self, other: &GetExclusionsPreviewOutput) -> bool
fn eq(&self, other: &GetExclusionsPreviewOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetExclusionsPreviewOutput
impl RequestId for GetExclusionsPreviewOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.