aws_sdk_mediapackagev2/client/update_channel_group.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`UpdateChannelGroup`](crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`channel_group_name(impl Into<String>)`](crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder::channel_group_name) / [`set_channel_group_name(Option<String>)`](crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder::set_channel_group_name):<br>required: **true**<br><p>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.</p><br>
7 /// - [`e_tag(impl Into<String>)`](crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder::e_tag) / [`set_e_tag(Option<String>)`](crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder::set_e_tag):<br>required: **false**<br><p>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.</p><br>
8 /// - [`description(impl Into<String>)`](crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder::set_description):<br>required: **false**<br><p>Any descriptive information that you want to add to the channel group for future identification purposes.</p><br>
9 /// - On success, responds with [`UpdateChannelGroupOutput`](crate::operation::update_channel_group::UpdateChannelGroupOutput) with field(s):
10 /// - [`channel_group_name(String)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::channel_group_name): <p>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.</p>
11 /// - [`arn(String)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::arn): <p>The Amazon Resource Name (ARN) associated with the resource.</p>
12 /// - [`egress_domain(String)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::egress_domain): <p>The output domain where the source stream is sent. Integrate the domain with a downstream CDN (such as Amazon CloudFront) or playback device.</p>
13 /// - [`created_at(DateTime)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::created_at): <p>The date and time the channel group was created.</p>
14 /// - [`modified_at(DateTime)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::modified_at): <p>The date and time the channel group was modified.</p>
15 /// - [`description(Option<String>)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::description): <p>The description for your channel group.</p>
16 /// - [`e_tag(Option<String>)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::e_tag): <p>The current Entity Tag (ETag) associated with this resource. The entity tag can be used to safely make concurrent updates to the resource.</p>
17 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::update_channel_group::UpdateChannelGroupOutput::tags): <p>The comma-separated list of tag key:value pairs assigned to the channel group.</p>
18 /// - On failure, responds with [`SdkError<UpdateChannelGroupError>`](crate::operation::update_channel_group::UpdateChannelGroupError)
19 pub fn update_channel_group(&self) -> crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder {
20 crate::operation::update_channel_group::builders::UpdateChannelGroupFluentBuilder::new(self.handle.clone())
21 }
22}