#[non_exhaustive]pub struct UpdateOriginEndpointInput { /* private fields */ }
Expand description
Configuration parameters used to update an existing OriginEndpoint.
Implementations§
source§impl UpdateOriginEndpointInput
impl UpdateOriginEndpointInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateOriginEndpoint, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateOriginEndpoint, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateOriginEndpoint
>
Examples found in repository?
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::UpdateOriginEndpoint,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::UpdateOriginEndpointError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// 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](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::UpdateOriginEndpointOutput,
aws_smithy_http::result::SdkError<crate::error::UpdateOriginEndpointError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateOriginEndpointInput
.
source§impl UpdateOriginEndpointInput
impl UpdateOriginEndpointInput
CDN Authorization credentials
sourcepub fn cmaf_package(&self) -> Option<&CmafPackageCreateOrUpdateParameters>
pub fn cmaf_package(&self) -> Option<&CmafPackageCreateOrUpdateParameters>
A Common Media Application Format (CMAF) packaging configuration.
sourcepub fn dash_package(&self) -> Option<&DashPackage>
pub fn dash_package(&self) -> Option<&DashPackage>
A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A short text description of the OriginEndpoint.
sourcepub fn hls_package(&self) -> Option<&HlsPackage>
pub fn hls_package(&self) -> Option<&HlsPackage>
An HTTP Live Streaming (HLS) packaging configuration.
sourcepub fn manifest_name(&self) -> Option<&str>
pub fn manifest_name(&self) -> Option<&str>
A short string that will be appended to the end of the Endpoint URL.
sourcepub fn mss_package(&self) -> Option<&MssPackage>
pub fn mss_package(&self) -> Option<&MssPackage>
A Microsoft Smooth Streaming (MSS) packaging configuration.
sourcepub fn origination(&self) -> Option<&Origination>
pub fn origination(&self) -> Option<&Origination>
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) -> i32
pub fn startover_window_seconds(&self) -> i32
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) -> i32
pub fn time_delay_seconds(&self) -> i32
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.
Trait Implementations§
source§impl Clone for UpdateOriginEndpointInput
impl Clone for UpdateOriginEndpointInput
source§fn clone(&self) -> UpdateOriginEndpointInput
fn clone(&self) -> UpdateOriginEndpointInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more