Struct aws_sdk_datazone::types::SubscriptionGrantSummary
source · #[non_exhaustive]pub struct SubscriptionGrantSummary {
pub id: Option<String>,
pub created_by: Option<String>,
pub updated_by: Option<String>,
pub domain_id: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub subscription_target_id: Option<String>,
pub granted_entity: Option<GrantedEntity>,
pub status: Option<SubscriptionGrantOverallStatus>,
pub assets: Option<Vec<SubscribedAsset>>,
pub subscription_id: Option<String>,
}
Expand description
The details of the subscription grant.
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: Option<String>
The identifier of the subscription grant.
created_by: Option<String>
The datazone user who created the subscription grant.
updated_by: Option<String>
The Amazon DataZone user who updated the subscription grant.
domain_id: Option<String>
The identifier of the Amazon DataZone domain in which a subscription grant exists.
created_at: Option<DateTime>
The timestamp of when a subscription grant was created.
updated_at: Option<DateTime>
The timestampf of when the subscription grant was updated.
subscription_target_id: Option<String>
The identifier of the target of the subscription grant.
granted_entity: Option<GrantedEntity>
The entity to which the subscription is granted.
status: Option<SubscriptionGrantOverallStatus>
The status of the subscription grant.
assets: Option<Vec<SubscribedAsset>>
The assets included in the subscription grant.
subscription_id: Option<String>
The ID of the subscription grant.
Implementations§
source§impl SubscriptionGrantSummary
impl SubscriptionGrantSummary
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The datazone user who created the subscription grant.
sourcepub fn updated_by(&self) -> Option<&str>
pub fn updated_by(&self) -> Option<&str>
The Amazon DataZone user who updated the subscription grant.
sourcepub fn domain_id(&self) -> Option<&str>
pub fn domain_id(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which a subscription grant exists.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when a subscription grant was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestampf of when the subscription grant was updated.
sourcepub fn subscription_target_id(&self) -> Option<&str>
pub fn subscription_target_id(&self) -> Option<&str>
The identifier of the target of the subscription grant.
sourcepub fn granted_entity(&self) -> Option<&GrantedEntity>
pub fn granted_entity(&self) -> Option<&GrantedEntity>
The entity to which the subscription is granted.
sourcepub fn status(&self) -> Option<&SubscriptionGrantOverallStatus>
pub fn status(&self) -> Option<&SubscriptionGrantOverallStatus>
The status of the subscription grant.
sourcepub fn assets(&self) -> Option<&[SubscribedAsset]>
pub fn assets(&self) -> Option<&[SubscribedAsset]>
The assets included in the subscription grant.
sourcepub fn subscription_id(&self) -> Option<&str>
pub fn subscription_id(&self) -> Option<&str>
The ID of the subscription grant.
source§impl SubscriptionGrantSummary
impl SubscriptionGrantSummary
sourcepub fn builder() -> SubscriptionGrantSummaryBuilder
pub fn builder() -> SubscriptionGrantSummaryBuilder
Creates a new builder-style object to manufacture SubscriptionGrantSummary
.
Trait Implementations§
source§impl Clone for SubscriptionGrantSummary
impl Clone for SubscriptionGrantSummary
source§fn clone(&self) -> SubscriptionGrantSummary
fn clone(&self) -> SubscriptionGrantSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SubscriptionGrantSummary
impl Debug for SubscriptionGrantSummary
source§impl PartialEq for SubscriptionGrantSummary
impl PartialEq for SubscriptionGrantSummary
source§fn eq(&self, other: &SubscriptionGrantSummary) -> bool
fn eq(&self, other: &SubscriptionGrantSummary) -> bool
self
and other
values to be equal, and is used
by ==
.