#[non_exhaustive]pub struct ListSubscriptionGrantsInput {
pub domain_identifier: Option<String>,
pub environment_id: Option<String>,
pub subscription_target_id: Option<String>,
pub subscribed_listing_id: Option<String>,
pub subscription_id: 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.
environment_id: Option<String>
The identifier of the Amazon DataZone environment.
subscription_target_id: Option<String>
The identifier of the subscription target.
subscribed_listing_id: Option<String>
The identifier of the subscribed listing.
subscription_id: Option<String>
The identifier of the subscription.
sort_by: Option<SortKey>
Specifies the way of sorting the results of this action.
sort_order: Option<SortOrder>
Specifies the sort order of this action.
max_results: Option<i32>
The maximum number of subscription grants to return in a single call to ListSubscriptionGrants
. When the number of subscription grants 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 ListSubscriptionGrants
to list the next set of subscription grants.
next_token: Option<String>
When the number of subscription grants 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 grants, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListSubscriptionGrants
to list the next set of subscription grants.
Implementations§
source§impl ListSubscriptionGrantsInput
impl ListSubscriptionGrantsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The identifier of the Amazon DataZone environment.
sourcepub fn subscription_target_id(&self) -> Option<&str>
pub fn subscription_target_id(&self) -> Option<&str>
The identifier of the subscription target.
sourcepub fn subscribed_listing_id(&self) -> Option<&str>
pub fn subscribed_listing_id(&self) -> Option<&str>
The identifier of the subscribed listing.
sourcepub fn subscription_id(&self) -> Option<&str>
pub fn subscription_id(&self) -> Option<&str>
The identifier of the subscription.
sourcepub fn sort_by(&self) -> Option<&SortKey>
pub fn sort_by(&self) -> Option<&SortKey>
Specifies the way of sorting the results of this action.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
Specifies the sort order of this action.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of subscription grants to return in a single call to ListSubscriptionGrants
. When the number of subscription grants 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 ListSubscriptionGrants
to list the next set of subscription grants.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of subscription grants 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 grants, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListSubscriptionGrants
to list the next set of subscription grants.
source§impl ListSubscriptionGrantsInput
impl ListSubscriptionGrantsInput
sourcepub fn builder() -> ListSubscriptionGrantsInputBuilder
pub fn builder() -> ListSubscriptionGrantsInputBuilder
Creates a new builder-style object to manufacture ListSubscriptionGrantsInput
.
Trait Implementations§
source§impl Clone for ListSubscriptionGrantsInput
impl Clone for ListSubscriptionGrantsInput
source§fn clone(&self) -> ListSubscriptionGrantsInput
fn clone(&self) -> ListSubscriptionGrantsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSubscriptionGrantsInput
impl Debug for ListSubscriptionGrantsInput
source§impl PartialEq for ListSubscriptionGrantsInput
impl PartialEq for ListSubscriptionGrantsInput
source§fn eq(&self, other: &ListSubscriptionGrantsInput) -> bool
fn eq(&self, other: &ListSubscriptionGrantsInput) -> bool
self
and other
values to be equal, and is used
by ==
.