#[non_exhaustive]pub struct CreateLiveSourceInput {
pub http_package_configurations: Option<Vec<HttpPackageConfiguration>>,
pub live_source_name: Option<String>,
pub source_location_name: Option<String>,
pub tags: Option<HashMap<String, String>>,
}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.http_package_configurations: Option<Vec<HttpPackageConfiguration>>A list of HTTP package configuration parameters for this live source.
live_source_name: Option<String>The name of the live source.
source_location_name: Option<String>The name of the source location.
The tags to assign to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources.
Implementations§
source§impl CreateLiveSourceInput
impl CreateLiveSourceInput
sourcepub fn http_package_configurations(&self) -> &[HttpPackageConfiguration]
pub fn http_package_configurations(&self) -> &[HttpPackageConfiguration]
A list of HTTP package configuration parameters for this live source.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .http_package_configurations.is_none().
sourcepub fn live_source_name(&self) -> Option<&str>
pub fn live_source_name(&self) -> Option<&str>
The name of the live source.
sourcepub fn source_location_name(&self) -> Option<&str>
pub fn source_location_name(&self) -> Option<&str>
The name of the source location.
The tags to assign to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources.
source§impl CreateLiveSourceInput
impl CreateLiveSourceInput
sourcepub fn builder() -> CreateLiveSourceInputBuilder
pub fn builder() -> CreateLiveSourceInputBuilder
Creates a new builder-style object to manufacture CreateLiveSourceInput.
Trait Implementations§
source§impl Clone for CreateLiveSourceInput
impl Clone for CreateLiveSourceInput
source§fn clone(&self) -> CreateLiveSourceInput
fn clone(&self) -> CreateLiveSourceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateLiveSourceInput
impl Debug for CreateLiveSourceInput
source§impl PartialEq for CreateLiveSourceInput
impl PartialEq for CreateLiveSourceInput
source§fn eq(&self, other: &CreateLiveSourceInput) -> bool
fn eq(&self, other: &CreateLiveSourceInput) -> bool
self and other values to be equal, and is used
by ==.