Struct aws_sdk_datazone::operation::create_subscription_request::CreateSubscriptionRequestInput
source · #[non_exhaustive]pub struct CreateSubscriptionRequestInput {
pub domain_identifier: Option<String>,
pub subscribed_principals: Option<Vec<SubscribedPrincipalInput>>,
pub subscribed_listings: Option<Vec<SubscribedListingInput>>,
pub request_reason: Option<String>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_identifier: Option<String>
The ID of the Amazon DataZone domain in which the subscription request is created.
subscribed_principals: Option<Vec<SubscribedPrincipalInput>>
The Amazon DataZone principals for whom the subscription request is created.
subscribed_listings: Option<Vec<SubscribedListingInput>>
§
request_reason: Option<String>
The reason for the subscription request.
client_token: Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Implementations§
source§impl CreateSubscriptionRequestInput
impl CreateSubscriptionRequestInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain in which the subscription request is created.
sourcepub fn subscribed_principals(&self) -> Option<&[SubscribedPrincipalInput]>
pub fn subscribed_principals(&self) -> Option<&[SubscribedPrincipalInput]>
The Amazon DataZone principals for whom the subscription request is created.
sourcepub fn subscribed_listings(&self) -> Option<&[SubscribedListingInput]>
pub fn subscribed_listings(&self) -> Option<&[SubscribedListingInput]>
sourcepub fn request_reason(&self) -> Option<&str>
pub fn request_reason(&self) -> Option<&str>
The reason for the subscription request.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
source§impl CreateSubscriptionRequestInput
impl CreateSubscriptionRequestInput
sourcepub fn builder() -> CreateSubscriptionRequestInputBuilder
pub fn builder() -> CreateSubscriptionRequestInputBuilder
Creates a new builder-style object to manufacture CreateSubscriptionRequestInput
.
Trait Implementations§
source§impl Clone for CreateSubscriptionRequestInput
impl Clone for CreateSubscriptionRequestInput
source§fn clone(&self) -> CreateSubscriptionRequestInput
fn clone(&self) -> CreateSubscriptionRequestInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for CreateSubscriptionRequestInput
impl PartialEq for CreateSubscriptionRequestInput
source§fn eq(&self, other: &CreateSubscriptionRequestInput) -> bool
fn eq(&self, other: &CreateSubscriptionRequestInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateSubscriptionRequestInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateSubscriptionRequestInput
impl Send for CreateSubscriptionRequestInput
impl Sync for CreateSubscriptionRequestInput
impl Unpin for CreateSubscriptionRequestInput
impl UnwindSafe for CreateSubscriptionRequestInput
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
Mutably borrows from an owned value. Read more