#[non_exhaustive]pub struct ListSegmentReferencesInput {
pub segment: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub type: Option<SegmentReferenceResourceType>,
}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.segment: Option<String>The ARN of the segment that you want to view information for.
max_results: Option<i32>The maximum number of results to include in the response. If you omit this, the default of 50 is used.
next_token: Option<String>The token to use when requesting the next set of results. You received this token from a previous ListSegmentReferences operation.
type: Option<SegmentReferenceResourceType>Specifies whether to return information about launches or experiments that use this segment.
Implementations§
source§impl ListSegmentReferencesInput
impl ListSegmentReferencesInput
sourcepub fn segment(&self) -> Option<&str>
pub fn segment(&self) -> Option<&str>
The ARN of the segment that you want to view information for.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to include in the response. If you omit this, the default of 50 is used.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use when requesting the next set of results. You received this token from a previous ListSegmentReferences operation.
sourcepub fn type(&self) -> Option<&SegmentReferenceResourceType>
pub fn type(&self) -> Option<&SegmentReferenceResourceType>
Specifies whether to return information about launches or experiments that use this segment.
source§impl ListSegmentReferencesInput
impl ListSegmentReferencesInput
sourcepub fn builder() -> ListSegmentReferencesInputBuilder
pub fn builder() -> ListSegmentReferencesInputBuilder
Creates a new builder-style object to manufacture ListSegmentReferencesInput.
Trait Implementations§
source§impl Clone for ListSegmentReferencesInput
impl Clone for ListSegmentReferencesInput
source§fn clone(&self) -> ListSegmentReferencesInput
fn clone(&self) -> ListSegmentReferencesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListSegmentReferencesInput
impl Debug for ListSegmentReferencesInput
source§impl PartialEq for ListSegmentReferencesInput
impl PartialEq for ListSegmentReferencesInput
source§fn eq(&self, other: &ListSegmentReferencesInput) -> bool
fn eq(&self, other: &ListSegmentReferencesInput) -> bool
self and other values to be equal, and is used
by ==.