#[non_exhaustive]pub struct ListSubscriptionTargetsInput {
pub domain_identifier: Option<String>,
pub environment_identifier: Option<String>,
pub sort_by: Option<SortKey>,
pub sort_order: Option<SortOrder>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}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.domain_identifier: Option<String>The identifier of the Amazon DataZone domain where you want to list subscription targets.
environment_identifier: Option<String>The identifier of the environment where you want to list subscription targets.
sort_by: Option<SortKey>Specifies the way in which the results of this action are to be sorted.
sort_order: Option<SortOrder>Specifies the sort order for the results of this action.
max_results: Option<i32>The maximum number of subscription targets to return in a single call to ListSubscriptionTargets. When the number of subscription targets to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListSubscriptionTargets to list the next set of subscription targets.
next_token: Option<String>When the number of subscription targets is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription targets, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionTargets to list the next set of subscription targets.
Implementations§
source§impl ListSubscriptionTargetsInput
impl ListSubscriptionTargetsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain where you want to list subscription targets.
sourcepub fn environment_identifier(&self) -> Option<&str>
pub fn environment_identifier(&self) -> Option<&str>
The identifier of the environment where you want to list subscription targets.
sourcepub fn sort_by(&self) -> Option<&SortKey>
pub fn sort_by(&self) -> Option<&SortKey>
Specifies the way in which the results of this action are to be sorted.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
Specifies the sort order for the results of this action.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of subscription targets to return in a single call to ListSubscriptionTargets. When the number of subscription targets to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListSubscriptionTargets to list the next set of subscription targets.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of subscription targets is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription targets, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionTargets to list the next set of subscription targets.
source§impl ListSubscriptionTargetsInput
impl ListSubscriptionTargetsInput
sourcepub fn builder() -> ListSubscriptionTargetsInputBuilder
pub fn builder() -> ListSubscriptionTargetsInputBuilder
Creates a new builder-style object to manufacture ListSubscriptionTargetsInput.
Trait Implementations§
source§impl Clone for ListSubscriptionTargetsInput
impl Clone for ListSubscriptionTargetsInput
source§fn clone(&self) -> ListSubscriptionTargetsInput
fn clone(&self) -> ListSubscriptionTargetsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListSubscriptionTargetsInput
impl Debug for ListSubscriptionTargetsInput
source§impl PartialEq for ListSubscriptionTargetsInput
impl PartialEq for ListSubscriptionTargetsInput
source§fn eq(&self, other: &ListSubscriptionTargetsInput) -> bool
fn eq(&self, other: &ListSubscriptionTargetsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListSubscriptionTargetsInput
Auto Trait Implementations§
impl Freeze for ListSubscriptionTargetsInput
impl RefUnwindSafe for ListSubscriptionTargetsInput
impl Send for ListSubscriptionTargetsInput
impl Sync for ListSubscriptionTargetsInput
impl Unpin for ListSubscriptionTargetsInput
impl UnwindSafe for ListSubscriptionTargetsInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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