#[non_exhaustive]pub struct DescribeIntegrationsInput {
pub integration_identifier: Option<String>,
pub marker: Option<String>,
pub max_records: Option<i32>,
pub filters: Option<Vec<IntegrationFilter>>,
}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.integration_identifier: Option<String>The Amazon Resource Name (ARN) for the integration.
marker: Option<String>A value that indicates the starting point for the next set of response records in a subsequent request.
max_records: Option<i32>The total number of items to return in the output.
filters: Option<Vec<IntegrationFilter>>A list of key and values, to filter down the results. Supported keys are "Status", "IntegrationName", and "SourceArn". IntegrationName is limited to only one value.
Implementations§
Source§impl DescribeIntegrationsInput
impl DescribeIntegrationsInput
Sourcepub fn integration_identifier(&self) -> Option<&str>
pub fn integration_identifier(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the integration.
Sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
A value that indicates the starting point for the next set of response records in a subsequent request.
Sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
The total number of items to return in the output.
Sourcepub fn filters(&self) -> &[IntegrationFilter]
pub fn filters(&self) -> &[IntegrationFilter]
A list of key and values, to filter down the results. Supported keys are "Status", "IntegrationName", and "SourceArn". IntegrationName is limited to only one value.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
Source§impl DescribeIntegrationsInput
impl DescribeIntegrationsInput
Sourcepub fn builder() -> DescribeIntegrationsInputBuilder
pub fn builder() -> DescribeIntegrationsInputBuilder
Creates a new builder-style object to manufacture DescribeIntegrationsInput.
Trait Implementations§
Source§impl Clone for DescribeIntegrationsInput
impl Clone for DescribeIntegrationsInput
Source§fn clone(&self) -> DescribeIntegrationsInput
fn clone(&self) -> DescribeIntegrationsInput
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DescribeIntegrationsInput
impl Debug for DescribeIntegrationsInput
Source§impl PartialEq for DescribeIntegrationsInput
impl PartialEq for DescribeIntegrationsInput
Source§fn eq(&self, other: &DescribeIntegrationsInput) -> bool
fn eq(&self, other: &DescribeIntegrationsInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeIntegrationsInput
Auto Trait Implementations§
impl Freeze for DescribeIntegrationsInput
impl RefUnwindSafe for DescribeIntegrationsInput
impl Send for DescribeIntegrationsInput
impl Sync for DescribeIntegrationsInput
impl Unpin for DescribeIntegrationsInput
impl UnsafeUnpin for DescribeIntegrationsInput
impl UnwindSafe for DescribeIntegrationsInput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more