Struct aws_sdk_datazone::operation::get_subscription_request_details::GetSubscriptionRequestDetailsInput
source · #[non_exhaustive]pub struct GetSubscriptionRequestDetailsInput {
pub domain_identifier: Option<String>,
pub identifier: 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 identifier of the Amazon DataZone domain in which to get the subscription request details.
identifier: Option<String>
The identifier of the subscription request the details of which to get.
Implementations§
source§impl GetSubscriptionRequestDetailsInput
impl GetSubscriptionRequestDetailsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which to get the subscription request details.
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
The identifier of the subscription request the details of which to get.
source§impl GetSubscriptionRequestDetailsInput
impl GetSubscriptionRequestDetailsInput
sourcepub fn builder() -> GetSubscriptionRequestDetailsInputBuilder
pub fn builder() -> GetSubscriptionRequestDetailsInputBuilder
Creates a new builder-style object to manufacture GetSubscriptionRequestDetailsInput
.
Trait Implementations§
source§impl Clone for GetSubscriptionRequestDetailsInput
impl Clone for GetSubscriptionRequestDetailsInput
source§fn clone(&self) -> GetSubscriptionRequestDetailsInput
fn clone(&self) -> GetSubscriptionRequestDetailsInput
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 GetSubscriptionRequestDetailsInput
impl PartialEq for GetSubscriptionRequestDetailsInput
source§fn eq(&self, other: &GetSubscriptionRequestDetailsInput) -> bool
fn eq(&self, other: &GetSubscriptionRequestDetailsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSubscriptionRequestDetailsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetSubscriptionRequestDetailsInput
impl Send for GetSubscriptionRequestDetailsInput
impl Sync for GetSubscriptionRequestDetailsInput
impl Unpin for GetSubscriptionRequestDetailsInput
impl UnwindSafe for GetSubscriptionRequestDetailsInput
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