Struct aws_sdk_mediapackagev2::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder
source · pub struct UpdateChannelGroupFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateChannelGroup.
Update the specified channel group. You can edit the description on a channel group for easier identification later from the AWS Elemental MediaPackage console. You can't edit the name of the channel group.
Any edits you make that impact the video output may not be reflected for a few minutes.
Implementations§
source§impl UpdateChannelGroupFluentBuilder
impl UpdateChannelGroupFluentBuilder
sourcepub fn as_input(&self) -> &UpdateChannelGroupInputBuilder
pub fn as_input(&self) -> &UpdateChannelGroupInputBuilder
Access the UpdateChannelGroup as a reference.
sourcepub async fn send(
self
) -> Result<UpdateChannelGroupOutput, SdkError<UpdateChannelGroupError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateChannelGroupOutput, SdkError<UpdateChannelGroupError, HttpResponse>>
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.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateChannelGroupOutput, UpdateChannelGroupError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateChannelGroupOutput, UpdateChannelGroupError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn channel_group_name(self, input: impl Into<String>) -> Self
pub fn channel_group_name(self, input: impl Into<String>) -> Self
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
sourcepub fn set_channel_group_name(self, input: Option<String>) -> Self
pub fn set_channel_group_name(self, input: Option<String>) -> Self
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
sourcepub fn get_channel_group_name(&self) -> &Option<String>
pub fn get_channel_group_name(&self) -> &Option<String>
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
sourcepub fn e_tag(self, input: impl Into<String>) -> Self
pub fn e_tag(self, input: impl Into<String>) -> Self
The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.
sourcepub fn set_e_tag(self, input: Option<String>) -> Self
pub fn set_e_tag(self, input: Option<String>) -> Self
The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.
sourcepub fn get_e_tag(&self) -> &Option<String>
pub fn get_e_tag(&self) -> &Option<String>
The expected current Entity Tag (ETag) for the resource. If the specified ETag does not match the resource's current entity tag, the update request will be rejected.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Any descriptive information that you want to add to the channel group for future identification purposes.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Any descriptive information that you want to add to the channel group for future identification purposes.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
Any descriptive information that you want to add to the channel group for future identification purposes.
Trait Implementations§
source§impl Clone for UpdateChannelGroupFluentBuilder
impl Clone for UpdateChannelGroupFluentBuilder
source§fn clone(&self) -> UpdateChannelGroupFluentBuilder
fn clone(&self) -> UpdateChannelGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for UpdateChannelGroupFluentBuilder
impl !RefUnwindSafe for UpdateChannelGroupFluentBuilder
impl Send for UpdateChannelGroupFluentBuilder
impl Sync for UpdateChannelGroupFluentBuilder
impl Unpin for UpdateChannelGroupFluentBuilder
impl !UnwindSafe for UpdateChannelGroupFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more