pub struct UpdateOriginEndpoint { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateOriginEndpoint
.
Updates an existing OriginEndpoint.
Implementations§
source§impl UpdateOriginEndpoint
impl UpdateOriginEndpoint
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateOriginEndpoint, AwsResponseRetryClassifier>, SdkError<UpdateOriginEndpointError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateOriginEndpoint, AwsResponseRetryClassifier>, SdkError<UpdateOriginEndpointError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateOriginEndpointOutput, SdkError<UpdateOriginEndpointError>>
pub async fn send(
self
) -> Result<UpdateOriginEndpointOutput, SdkError<UpdateOriginEndpointError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
CDN Authorization credentials
CDN Authorization credentials
sourcepub fn cmaf_package(self, input: CmafPackageCreateOrUpdateParameters) -> Self
pub fn cmaf_package(self, input: CmafPackageCreateOrUpdateParameters) -> Self
A Common Media Application Format (CMAF) packaging configuration.
sourcepub fn set_cmaf_package(
self,
input: Option<CmafPackageCreateOrUpdateParameters>
) -> Self
pub fn set_cmaf_package(
self,
input: Option<CmafPackageCreateOrUpdateParameters>
) -> 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 that will be appended to the end of the Endpoint URL.
sourcepub fn set_manifest_name(self, input: Option<String>) -> Self
pub fn set_manifest_name(self, input: Option<String>) -> Self
A short string that will be appended to the end of the Endpoint 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 (in 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 (in seconds) of content to retain for startover playback. If not specified, startover playback will be disabled for the OriginEndpoint.
sourcepub fn time_delay_seconds(self, input: i32) -> Self
pub fn time_delay_seconds(self, input: i32) -> Self
Amount of delay (in 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 (in 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 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.
Trait Implementations§
source§impl Clone for UpdateOriginEndpoint
impl Clone for UpdateOriginEndpoint
source§fn clone(&self) -> UpdateOriginEndpoint
fn clone(&self) -> UpdateOriginEndpoint
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more