#[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 ==.