Struct aws_sdk_datazone::types::SubscriptionSummary
source · #[non_exhaustive]pub struct SubscriptionSummary {
pub id: Option<String>,
pub created_by: Option<String>,
pub updated_by: Option<String>,
pub domain_id: Option<String>,
pub status: Option<SubscriptionStatus>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub subscribed_principal: Option<SubscribedPrincipal>,
pub subscribed_listing: Option<SubscribedListing>,
pub subscription_request_id: Option<String>,
pub retain_permissions: Option<bool>,
}
Expand description
The details of the subscription.
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.
created_by: Option<String>
The Amazon DataZone user who created the subscription.
updated_by: Option<String>
The Amazon DataZone user who updated the subscription.
domain_id: Option<String>
The identifier of the Amazon DataZone domain in which a subscription exists.
status: Option<SubscriptionStatus>
The status of the subscription.
created_at: Option<DateTime>
The timestamp of when the subscription was created.
updated_at: Option<DateTime>
The timestamp of when the subscription was updated.
subscribed_principal: Option<SubscribedPrincipal>
The principal included in the subscription.
subscribed_listing: Option<SubscribedListing>
The listing included in the subscription.
subscription_request_id: Option<String>
The identifier of the subscription request for the subscription.
retain_permissions: Option<bool>
The retain permissions included in the subscription.
Implementations§
source§impl SubscriptionSummary
impl SubscriptionSummary
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The Amazon DataZone user who created the subscription.
sourcepub fn updated_by(&self) -> Option<&str>
pub fn updated_by(&self) -> Option<&str>
The Amazon DataZone user who updated the subscription.
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 exists.
sourcepub fn status(&self) -> Option<&SubscriptionStatus>
pub fn status(&self) -> Option<&SubscriptionStatus>
The status of the subscription.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the subscription was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the subscription was updated.
sourcepub fn subscribed_principal(&self) -> Option<&SubscribedPrincipal>
pub fn subscribed_principal(&self) -> Option<&SubscribedPrincipal>
The principal included in the subscription.
sourcepub fn subscribed_listing(&self) -> Option<&SubscribedListing>
pub fn subscribed_listing(&self) -> Option<&SubscribedListing>
The listing included in the subscription.
sourcepub fn subscription_request_id(&self) -> Option<&str>
pub fn subscription_request_id(&self) -> Option<&str>
The identifier of the subscription request for the subscription.
sourcepub fn retain_permissions(&self) -> Option<bool>
pub fn retain_permissions(&self) -> Option<bool>
The retain permissions included in the subscription.
source§impl SubscriptionSummary
impl SubscriptionSummary
sourcepub fn builder() -> SubscriptionSummaryBuilder
pub fn builder() -> SubscriptionSummaryBuilder
Creates a new builder-style object to manufacture SubscriptionSummary
.
Trait Implementations§
source§impl Clone for SubscriptionSummary
impl Clone for SubscriptionSummary
source§fn clone(&self) -> SubscriptionSummary
fn clone(&self) -> SubscriptionSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SubscriptionSummary
impl Debug for SubscriptionSummary
source§impl PartialEq for SubscriptionSummary
impl PartialEq for SubscriptionSummary
source§fn eq(&self, other: &SubscriptionSummary) -> bool
fn eq(&self, other: &SubscriptionSummary) -> bool
self
and other
values to be equal, and is used
by ==
.