Struct aws_sdk_mediapackage::model::origin_endpoint::Builder
source · [−]#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for OriginEndpoint
Implementations
sourceimpl Builder
impl Builder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) assigned to the OriginEndpoint.
CDN Authorization credentials
CDN Authorization credentials
sourcepub fn channel_id(self, input: impl Into<String>) -> Self
pub fn channel_id(self, input: impl Into<String>) -> Self
The ID of the Channel the OriginEndpoint is associated with.
sourcepub fn set_channel_id(self, input: Option<String>) -> Self
pub fn set_channel_id(self, input: Option<String>) -> Self
The ID of the Channel the OriginEndpoint is associated with.
sourcepub fn cmaf_package(self, input: CmafPackage) -> Self
pub fn cmaf_package(self, input: CmafPackage) -> Self
A Common Media Application Format (CMAF) packaging configuration.
sourcepub fn set_cmaf_package(self, input: Option<CmafPackage>) -> Self
pub fn set_cmaf_package(self, input: Option<CmafPackage>) -> Self
A Common Media Application Format (CMAF) packaging configuration.
sourcepub fn dash_package(self, input: DashPackage) -> Self
pub fn dash_package(self, input: DashPackage) -> Self
A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
sourcepub fn set_dash_package(self, input: Option<DashPackage>) -> Self
pub fn set_dash_package(self, input: Option<DashPackage>) -> Self
A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A short text description of the OriginEndpoint.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A short text description of the OriginEndpoint.
sourcepub fn hls_package(self, input: HlsPackage) -> Self
pub fn hls_package(self, input: HlsPackage) -> Self
An HTTP Live Streaming (HLS) packaging configuration.
sourcepub fn set_hls_package(self, input: Option<HlsPackage>) -> Self
pub fn set_hls_package(self, input: Option<HlsPackage>) -> Self
An HTTP Live Streaming (HLS) packaging configuration.
sourcepub fn manifest_name(self, input: impl Into<String>) -> Self
pub fn manifest_name(self, input: impl Into<String>) -> Self
A short string appended to the end of the OriginEndpoint URL.
sourcepub fn set_manifest_name(self, input: Option<String>) -> Self
pub fn set_manifest_name(self, input: Option<String>) -> Self
A short string appended to the end of the OriginEndpoint URL.
sourcepub fn mss_package(self, input: MssPackage) -> Self
pub fn mss_package(self, input: MssPackage) -> Self
A Microsoft Smooth Streaming (MSS) packaging configuration.
sourcepub fn set_mss_package(self, input: Option<MssPackage>) -> Self
pub fn set_mss_package(self, input: Option<MssPackage>) -> Self
A Microsoft Smooth Streaming (MSS) packaging configuration.
sourcepub fn origination(self, input: Origination) -> Self
pub fn origination(self, input: Origination) -> Self
Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
sourcepub fn set_origination(self, input: Option<Origination>) -> Self
pub fn set_origination(self, input: Option<Origination>) -> Self
Control whether origination of video is allowed for this OriginEndpoint. If set to ALLOW, the OriginEndpoint may by requested, pursuant to any other form of access control. If set to DENY, the OriginEndpoint may not be requested. This can be helpful for Live to VOD harvesting, or for temporarily disabling origination
sourcepub fn startover_window_seconds(self, input: i32) -> Self
pub fn startover_window_seconds(self, input: i32) -> Self
Maximum duration (seconds) of content to retain for startover playback. If not specified, startover playback will be disabled for the OriginEndpoint.
sourcepub fn set_startover_window_seconds(self, input: Option<i32>) -> Self
pub fn set_startover_window_seconds(self, input: Option<i32>) -> Self
Maximum duration (seconds) of content to retain for startover playback. If not specified, startover playback will be disabled for the OriginEndpoint.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
A collection of tags associated with a resource
A collection of tags associated with a resource
sourcepub fn time_delay_seconds(self, input: i32) -> Self
pub fn time_delay_seconds(self, input: i32) -> Self
Amount of delay (seconds) to enforce on the playback of live content. If not specified, there will be no time delay in effect for the OriginEndpoint.
sourcepub fn set_time_delay_seconds(self, input: Option<i32>) -> Self
pub fn set_time_delay_seconds(self, input: Option<i32>) -> Self
Amount of delay (seconds) to enforce on the playback of live content. If not specified, there will be no time delay in effect for the OriginEndpoint.
sourcepub fn url(self, input: impl Into<String>) -> Self
pub fn url(self, input: impl Into<String>) -> Self
The URL of the packaged OriginEndpoint for consumption.
sourcepub fn set_url(self, input: Option<String>) -> Self
pub fn set_url(self, input: Option<String>) -> Self
The URL of the packaged OriginEndpoint for consumption.
sourcepub fn whitelist(self, input: impl Into<String>) -> Self
pub fn whitelist(self, input: impl Into<String>) -> Self
Appends an item to whitelist
.
To override the contents of this collection use set_whitelist
.
A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
sourcepub fn set_whitelist(self, input: Option<Vec<String>>) -> Self
pub fn set_whitelist(self, input: Option<Vec<String>>) -> Self
A list of source IP CIDR blocks that will be allowed to access the OriginEndpoint.
sourcepub fn build(self) -> OriginEndpoint
pub fn build(self) -> OriginEndpoint
Consumes the builder and constructs a OriginEndpoint
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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