#[non_exhaustive]pub struct ListSubscriptionsInput {
pub domain_identifier: Option<String>,
pub subscription_request_identifier: Option<String>,
pub status: Option<SubscriptionStatus>,
pub subscribed_listing_id: Option<String>,
pub owning_project_id: Option<String>,
pub approver_project_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.
subscription_request_identifier: Option<String>
The identifier of the subscription request for the subscriptions that you want to list.
status: Option<SubscriptionStatus>
The status of the subscriptions that you want to list.
subscribed_listing_id: Option<String>
The identifier of the subscribed listing for the subscriptions that you want to list.
owning_project_id: Option<String>
The identifier of the owning project.
approver_project_id: Option<String>
The identifier of the project for the subscription's approver.
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 subscriptions to return in a single call to ListSubscriptions
. When the number of subscriptions 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 ListSubscriptions
to list the next set of Subscriptions.
next_token: Option<String>
When the number of subscriptions 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 subscriptions, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListSubscriptions
to list the next set of subscriptions.
Implementations§
source§impl ListSubscriptionsInput
impl ListSubscriptionsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain.
sourcepub fn subscription_request_identifier(&self) -> Option<&str>
pub fn subscription_request_identifier(&self) -> Option<&str>
The identifier of the subscription request for the subscriptions that you want to list.
sourcepub fn status(&self) -> Option<&SubscriptionStatus>
pub fn status(&self) -> Option<&SubscriptionStatus>
The status of the subscriptions that you want to list.
sourcepub fn subscribed_listing_id(&self) -> Option<&str>
pub fn subscribed_listing_id(&self) -> Option<&str>
The identifier of the subscribed listing for the subscriptions that you want to list.
sourcepub fn owning_project_id(&self) -> Option<&str>
pub fn owning_project_id(&self) -> Option<&str>
The identifier of the owning project.
sourcepub fn approver_project_id(&self) -> Option<&str>
pub fn approver_project_id(&self) -> Option<&str>
The identifier of the project for the subscription's approver.
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 subscriptions to return in a single call to ListSubscriptions
. When the number of subscriptions 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 ListSubscriptions
to list the next set of Subscriptions.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of subscriptions 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 subscriptions, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListSubscriptions
to list the next set of subscriptions.
source§impl ListSubscriptionsInput
impl ListSubscriptionsInput
sourcepub fn builder() -> ListSubscriptionsInputBuilder
pub fn builder() -> ListSubscriptionsInputBuilder
Creates a new builder-style object to manufacture ListSubscriptionsInput
.
Trait Implementations§
source§impl Clone for ListSubscriptionsInput
impl Clone for ListSubscriptionsInput
source§fn clone(&self) -> ListSubscriptionsInput
fn clone(&self) -> ListSubscriptionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSubscriptionsInput
impl Debug for ListSubscriptionsInput
source§impl PartialEq for ListSubscriptionsInput
impl PartialEq for ListSubscriptionsInput
source§fn eq(&self, other: &ListSubscriptionsInput) -> bool
fn eq(&self, other: &ListSubscriptionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.