1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`RotateIngestEndpointCredentials`](crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder::set_id):<br>required: **true**<br>The ID of the channel the IngestEndpoint is on.<br>
    ///   - [`ingest_endpoint_id(impl Into<String>)`](crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder::ingest_endpoint_id) / [`set_ingest_endpoint_id(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder::set_ingest_endpoint_id):<br>required: **true**<br>The id of the IngestEndpoint whose credentials should be rotated<br>
    /// - On success, responds with [`RotateIngestEndpointCredentialsOutput`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::arn): The Amazon Resource Name (ARN) assigned to the Channel.
    ///   - [`created_at(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::created_at): The date and time the Channel was created.
    ///   - [`description(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::description): A short text description of the Channel.
    ///   - [`egress_access_logs(Option<EgressAccessLogs>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::egress_access_logs): Configure egress access logging.
    ///   - [`hls_ingest(Option<HlsIngest>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::hls_ingest): An HTTP Live Streaming (HLS) ingest resource configuration.
    ///   - [`id(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::id): The ID of the Channel.
    ///   - [`ingress_access_logs(Option<IngressAccessLogs>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::ingress_access_logs): Configure ingress access logging.
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::tags): A collection of tags associated with a resource
    /// - On failure, responds with [`SdkError<RotateIngestEndpointCredentialsError>`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsError)
    pub fn rotate_ingest_endpoint_credentials(
        &self,
    ) -> crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder {
        crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder::new(self.handle.clone())
    }
}