Struct aws_sdk_cloudfront::model::StreamingDistribution
source · #[non_exhaustive]pub struct StreamingDistribution { /* private fields */ }
Expand description
A streaming distribution tells CloudFront where you want RTMP content to be delivered from, and the details about how to track and manage content delivery.
Implementations§
source§impl StreamingDistribution
impl StreamingDistribution
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The identifier for the RTMP distribution. For example: EGTXBD79EXAMPLE
.
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5
, where 123456789012
is your Amazon Web Services account ID.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The current status of the RTMP distribution. When the status is Deployed
, the distribution's information is propagated to all CloudFront edge locations.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The date and time that the distribution was last modified.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The domain name that corresponds to the streaming distribution, for example, s5c39gqb8ow64r.cloudfront.net
.
sourcepub fn active_trusted_signers(&self) -> Option<&ActiveTrustedSigners>
pub fn active_trusted_signers(&self) -> Option<&ActiveTrustedSigners>
A complex type that lists the Amazon Web Services accounts, if any, that you included in the TrustedSigners
complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.
The Signer
complex type lists the Amazon Web Services account number of the trusted signer or self
if the signer is the Amazon Web Services account that created the distribution. The Signer
element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's Amazon Web Services account. If no KeyPairId
element appears for a Signer
, that signer can't create signed URLs.
For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
sourcepub fn streaming_distribution_config(
&self
) -> Option<&StreamingDistributionConfig>
pub fn streaming_distribution_config(
&self
) -> Option<&StreamingDistributionConfig>
The current configuration information for the RTMP distribution.
source§impl StreamingDistribution
impl StreamingDistribution
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StreamingDistribution
.
Trait Implementations§
source§impl Clone for StreamingDistribution
impl Clone for StreamingDistribution
source§fn clone(&self) -> StreamingDistribution
fn clone(&self) -> StreamingDistribution
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StreamingDistribution
impl Debug for StreamingDistribution
source§impl PartialEq<StreamingDistribution> for StreamingDistribution
impl PartialEq<StreamingDistribution> for StreamingDistribution
source§fn eq(&self, other: &StreamingDistribution) -> bool
fn eq(&self, other: &StreamingDistribution) -> bool
self
and other
values to be equal, and is used
by ==
.