aws_sdk_mediapackage/client/
rotate_ingest_endpoint_credentials.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 [`RotateIngestEndpointCredentials`](crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`RotateIngestEndpointCredentialsOutput`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput) with field(s):
9    ///   - [`arn(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::arn): The Amazon Resource Name (ARN) assigned to the Channel.
10    ///   - [`created_at(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::created_at): The date and time the Channel was created.
11    ///   - [`description(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::description): A short text description of the Channel.
12    ///   - [`egress_access_logs(Option<EgressAccessLogs>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::egress_access_logs): Configure egress access logging.
13    ///   - [`hls_ingest(Option<HlsIngest>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::hls_ingest): An HTTP Live Streaming (HLS) ingest resource configuration.
14    ///   - [`id(Option<String>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::id): The ID of the Channel.
15    ///   - [`ingress_access_logs(Option<IngressAccessLogs>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::ingress_access_logs): Configure ingress access logging.
16    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsOutput::tags): A collection of tags associated with a resource
17    /// - On failure, responds with [`SdkError<RotateIngestEndpointCredentialsError>`](crate::operation::rotate_ingest_endpoint_credentials::RotateIngestEndpointCredentialsError)
18    pub fn rotate_ingest_endpoint_credentials(
19        &self,
20    ) -> crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder {
21        crate::operation::rotate_ingest_endpoint_credentials::builders::RotateIngestEndpointCredentialsFluentBuilder::new(self.handle.clone())
22    }
23}