Struct aws_sdk_datazone::operation::delete_subscription_grant::DeleteSubscriptionGrantOutput
source · #[non_exhaustive]pub struct DeleteSubscriptionGrantOutput {
pub id: String,
pub created_by: String,
pub updated_by: Option<String>,
pub domain_id: String,
pub created_at: DateTime,
pub updated_at: DateTime,
pub subscription_target_id: String,
pub granted_entity: Option<GrantedEntity>,
pub status: SubscriptionGrantOverallStatus,
pub assets: Option<Vec<SubscribedAsset>>,
pub subscription_id: Option<String>,
/* private fields */
}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.id: StringThe ID of the subscription grant that is deleted.
created_by: StringThe Amazon DataZone user who created the subscription grant that is deleted.
updated_by: Option<String>The Amazon DataZone user who updated the subscription grant that is deleted.
domain_id: StringThe ID of the Amazon DataZone domain in which the subscription grant is deleted.
created_at: DateTimeThe timestamp of when the subscription grant that is deleted was created.
updated_at: DateTimeThe timestamp of when the subscription grant that is deleted was updated.
subscription_target_id: StringThe ID of the subscription target associated with the subscription grant that is deleted.
granted_entity: Option<GrantedEntity>The entity to which the subscription is deleted.
status: SubscriptionGrantOverallStatusThe status of the subscription grant that is deleted.
assets: Option<Vec<SubscribedAsset>>The assets for which the subsctiption grant that is deleted gave access.
subscription_id: Option<String>The identifier of the subsctiption whose subscription grant is to be deleted.
Implementations§
source§impl DeleteSubscriptionGrantOutput
impl DeleteSubscriptionGrantOutput
sourcepub fn created_by(&self) -> &str
pub fn created_by(&self) -> &str
The Amazon DataZone user who created the subscription grant that is deleted.
sourcepub fn updated_by(&self) -> Option<&str>
pub fn updated_by(&self) -> Option<&str>
The Amazon DataZone user who updated the subscription grant that is deleted.
sourcepub fn domain_id(&self) -> &str
pub fn domain_id(&self) -> &str
The ID of the Amazon DataZone domain in which the subscription grant is deleted.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The timestamp of when the subscription grant that is deleted was created.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &DateTime
The timestamp of when the subscription grant that is deleted was updated.
sourcepub fn subscription_target_id(&self) -> &str
pub fn subscription_target_id(&self) -> &str
The ID of the subscription target associated with the subscription grant that is deleted.
sourcepub fn granted_entity(&self) -> Option<&GrantedEntity>
pub fn granted_entity(&self) -> Option<&GrantedEntity>
The entity to which the subscription is deleted.
sourcepub fn status(&self) -> &SubscriptionGrantOverallStatus
pub fn status(&self) -> &SubscriptionGrantOverallStatus
The status of the subscription grant that is deleted.
sourcepub fn assets(&self) -> &[SubscribedAsset]
pub fn assets(&self) -> &[SubscribedAsset]
The assets for which the subsctiption grant that is deleted gave access.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .assets.is_none().
sourcepub fn subscription_id(&self) -> Option<&str>
pub fn subscription_id(&self) -> Option<&str>
The identifier of the subsctiption whose subscription grant is to be deleted.
source§impl DeleteSubscriptionGrantOutput
impl DeleteSubscriptionGrantOutput
sourcepub fn builder() -> DeleteSubscriptionGrantOutputBuilder
pub fn builder() -> DeleteSubscriptionGrantOutputBuilder
Creates a new builder-style object to manufacture DeleteSubscriptionGrantOutput.
Trait Implementations§
source§impl Clone for DeleteSubscriptionGrantOutput
impl Clone for DeleteSubscriptionGrantOutput
source§fn clone(&self) -> DeleteSubscriptionGrantOutput
fn clone(&self) -> DeleteSubscriptionGrantOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DeleteSubscriptionGrantOutput
impl PartialEq for DeleteSubscriptionGrantOutput
source§fn eq(&self, other: &DeleteSubscriptionGrantOutput) -> bool
fn eq(&self, other: &DeleteSubscriptionGrantOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DeleteSubscriptionGrantOutput
impl RequestId for DeleteSubscriptionGrantOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DeleteSubscriptionGrantOutput
Auto Trait Implementations§
impl Freeze for DeleteSubscriptionGrantOutput
impl RefUnwindSafe for DeleteSubscriptionGrantOutput
impl Send for DeleteSubscriptionGrantOutput
impl Sync for DeleteSubscriptionGrantOutput
impl Unpin for DeleteSubscriptionGrantOutput
impl UnwindSafe for DeleteSubscriptionGrantOutput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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