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 ==
.