Struct aws_sdk_mediaconnect::model::Source
source · [−]#[non_exhaustive]pub struct Source {Show 14 fields
pub data_transfer_subscriber_fee_percent: i32,
pub decryption: Option<Encryption>,
pub description: Option<String>,
pub entitlement_arn: Option<String>,
pub ingest_ip: Option<String>,
pub ingest_port: i32,
pub media_stream_source_configurations: Option<Vec<MediaStreamSourceConfiguration>>,
pub name: Option<String>,
pub sender_control_port: i32,
pub sender_ip_address: Option<String>,
pub source_arn: Option<String>,
pub transport: Option<Transport>,
pub vpc_interface_name: Option<String>,
pub whitelist_cidr: Option<String>,
}
Expand description
The settings for the source of the flow.
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.data_transfer_subscriber_fee_percent: i32
Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
decryption: Option<Encryption>
The type of encryption that is used on the content ingested from this source.
description: Option<String>
A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
entitlement_arn: Option<String>
The ARN of the entitlement that allows you to subscribe to content that comes from another AWS account. The entitlement is set by the content originator and the ARN is generated as part of the originator’s flow.
ingest_ip: Option<String>
The IP address that the flow will be listening on for incoming content.
ingest_port: i32
The port that the flow will be listening on for incoming content.
media_stream_source_configurations: Option<Vec<MediaStreamSourceConfiguration>>
The media streams that are associated with the source, and the parameters for those associations.
name: Option<String>
The name of the source.
sender_control_port: i32
The port that the flow uses to send outbound requests to initiate connection with the sender.
sender_ip_address: Option<String>
The IP address that the flow communicates with to initiate connection with the sender.
source_arn: Option<String>
The ARN of the source.
transport: Option<Transport>
Attributes related to the transport stream that are used in the source.
vpc_interface_name: Option<String>
The name of the VPC interface that is used for this source.
whitelist_cidr: Option<String>
The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
Implementations
sourceimpl Source
impl Source
sourcepub fn data_transfer_subscriber_fee_percent(&self) -> i32
pub fn data_transfer_subscriber_fee_percent(&self) -> i32
Percentage from 0-100 of the data transfer cost to be billed to the subscriber.
sourcepub fn decryption(&self) -> Option<&Encryption>
pub fn decryption(&self) -> Option<&Encryption>
The type of encryption that is used on the content ingested from this source.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.
sourcepub fn entitlement_arn(&self) -> Option<&str>
pub fn entitlement_arn(&self) -> Option<&str>
The ARN of the entitlement that allows you to subscribe to content that comes from another AWS account. The entitlement is set by the content originator and the ARN is generated as part of the originator’s flow.
sourcepub fn ingest_ip(&self) -> Option<&str>
pub fn ingest_ip(&self) -> Option<&str>
The IP address that the flow will be listening on for incoming content.
sourcepub fn ingest_port(&self) -> i32
pub fn ingest_port(&self) -> i32
The port that the flow will be listening on for incoming content.
sourcepub fn media_stream_source_configurations(
&self
) -> Option<&[MediaStreamSourceConfiguration]>
pub fn media_stream_source_configurations(
&self
) -> Option<&[MediaStreamSourceConfiguration]>
The media streams that are associated with the source, and the parameters for those associations.
sourcepub fn sender_control_port(&self) -> i32
pub fn sender_control_port(&self) -> i32
The port that the flow uses to send outbound requests to initiate connection with the sender.
sourcepub fn sender_ip_address(&self) -> Option<&str>
pub fn sender_ip_address(&self) -> Option<&str>
The IP address that the flow communicates with to initiate connection with the sender.
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
The ARN of the source.
sourcepub fn transport(&self) -> Option<&Transport>
pub fn transport(&self) -> Option<&Transport>
Attributes related to the transport stream that are used in the source.
sourcepub fn vpc_interface_name(&self) -> Option<&str>
pub fn vpc_interface_name(&self) -> Option<&str>
The name of the VPC interface that is used for this source.
sourcepub fn whitelist_cidr(&self) -> Option<&str>
pub fn whitelist_cidr(&self) -> Option<&str>
The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
Trait Implementations
impl StructuralPartialEq for Source
Auto Trait Implementations
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnwindSafe for Source
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more