Struct aws_sdk_omics::types::ShareDetails
source · #[non_exhaustive]pub struct ShareDetails {
pub share_id: Option<String>,
pub resource_arn: Option<String>,
pub principal_subscriber: Option<String>,
pub owner_id: Option<String>,
pub status: Option<ShareStatus>,
pub status_message: Option<String>,
pub share_name: Option<String>,
pub creation_time: Option<DateTime>,
pub update_time: Option<DateTime>,
}
Expand description
The details of a share.
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.The ID for a share offer for an analytics store .
resource_arn: Option<String>
The resource Arn of the analytics store being shared.
principal_subscriber: Option<String>
The principal subscriber is the account the analytics store data is being shared with.
owner_id: Option<String>
The account ID for the data owner. The owner creates the share offer.
status: Option<ShareStatus>
The status of a share.
status_message: Option<String>
The status message for a share. It provides more details on the status of the share.
The name of the share.
creation_time: Option<DateTime>
The timestamp for when the share was created.
update_time: Option<DateTime>
The timestamp of the share update.
Implementations§
The ID for a share offer for an analytics store .
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The resource Arn of the analytics store being shared.
sourcepub fn principal_subscriber(&self) -> Option<&str>
pub fn principal_subscriber(&self) -> Option<&str>
The principal subscriber is the account the analytics store data is being shared with.
sourcepub fn owner_id(&self) -> Option<&str>
pub fn owner_id(&self) -> Option<&str>
The account ID for the data owner. The owner creates the share offer.
sourcepub fn status(&self) -> Option<&ShareStatus>
pub fn status(&self) -> Option<&ShareStatus>
The status of a share.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status message for a share. It provides more details on the status of the share.
The name of the share.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The timestamp for when the share was created.
sourcepub fn update_time(&self) -> Option<&DateTime>
pub fn update_time(&self) -> Option<&DateTime>
The timestamp of the share update.
sourcepub fn builder() -> ShareDetailsBuilder
pub fn builder() -> ShareDetailsBuilder
Creates a new builder-style object to manufacture ShareDetails
.
Trait Implementations§
source§fn clone(&self) -> ShareDetails
fn clone(&self) -> ShareDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn eq(&self, other: &ShareDetails) -> bool
fn eq(&self, other: &ShareDetails) -> bool
self
and other
values to be equal, and is used
by ==
.