Struct aws_sdk_datazone::operation::update_subscription_grant_status::UpdateSubscriptionGrantStatusInput
source · #[non_exhaustive]pub struct UpdateSubscriptionGrantStatusInput {
pub domain_identifier: Option<String>,
pub identifier: Option<String>,
pub asset_identifier: Option<String>,
pub status: Option<SubscriptionGrantStatus>,
pub failure_cause: Option<FailureCause>,
pub target_name: 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 in which a subscription grant status is to be updated.
identifier: Option<String>The identifier of the subscription grant the status of which is to be updated.
asset_identifier: Option<String>The identifier of the asset the subscription grant status of which is to be updated.
status: Option<SubscriptionGrantStatus>The status to be updated as part of the UpdateSubscriptionGrantStatus action.
failure_cause: Option<FailureCause>Specifies the error message that is returned if the operation cannot be successfully completed.
target_name: Option<String>The target name to be updated as part of the UpdateSubscriptionGrantStatus action.
Implementations§
source§impl UpdateSubscriptionGrantStatusInput
impl UpdateSubscriptionGrantStatusInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which a subscription grant status is to be updated.
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
The identifier of the subscription grant the status of which is to be updated.
sourcepub fn asset_identifier(&self) -> Option<&str>
pub fn asset_identifier(&self) -> Option<&str>
The identifier of the asset the subscription grant status of which is to be updated.
sourcepub fn status(&self) -> Option<&SubscriptionGrantStatus>
pub fn status(&self) -> Option<&SubscriptionGrantStatus>
The status to be updated as part of the UpdateSubscriptionGrantStatus action.
sourcepub fn failure_cause(&self) -> Option<&FailureCause>
pub fn failure_cause(&self) -> Option<&FailureCause>
Specifies the error message that is returned if the operation cannot be successfully completed.
sourcepub fn target_name(&self) -> Option<&str>
pub fn target_name(&self) -> Option<&str>
The target name to be updated as part of the UpdateSubscriptionGrantStatus action.
source§impl UpdateSubscriptionGrantStatusInput
impl UpdateSubscriptionGrantStatusInput
sourcepub fn builder() -> UpdateSubscriptionGrantStatusInputBuilder
pub fn builder() -> UpdateSubscriptionGrantStatusInputBuilder
Creates a new builder-style object to manufacture UpdateSubscriptionGrantStatusInput.
Trait Implementations§
source§impl Clone for UpdateSubscriptionGrantStatusInput
impl Clone for UpdateSubscriptionGrantStatusInput
source§fn clone(&self) -> UpdateSubscriptionGrantStatusInput
fn clone(&self) -> UpdateSubscriptionGrantStatusInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateSubscriptionGrantStatusInput
impl PartialEq for UpdateSubscriptionGrantStatusInput
source§fn eq(&self, other: &UpdateSubscriptionGrantStatusInput) -> bool
fn eq(&self, other: &UpdateSubscriptionGrantStatusInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSubscriptionGrantStatusInput
Auto Trait Implementations§
impl Freeze for UpdateSubscriptionGrantStatusInput
impl RefUnwindSafe for UpdateSubscriptionGrantStatusInput
impl Send for UpdateSubscriptionGrantStatusInput
impl Sync for UpdateSubscriptionGrantStatusInput
impl Unpin for UpdateSubscriptionGrantStatusInput
impl UnwindSafe for UpdateSubscriptionGrantStatusInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more