aws_sdk_mediatailor/client/list_live_sources.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 [`ListLiveSources`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`max_results(i32)`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of live sources that you want MediaTailor to return in response to the current request. If there are more than <code>MaxResults</code> live sources, use the value of <code>NextToken</code> in the response to get the next page of results.</p> <p>The default value is 100. MediaTailor uses DynamoDB-based pagination, which means that a response might contain fewer than <code>MaxResults</code> items, including 0 items, even when more results are available. To retrieve all results, you must continue making requests using the <code>NextToken</code> value from each response until the response no longer includes a <code>NextToken</code> value.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::set_next_token):<br>required: **false**<br><p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p> <p>For the first <code>ListLiveSources</code> request, omit this value. For subsequent requests, get the value of <code>NextToken</code> from the previous response and specify that value for <code>NextToken</code> in the request. Continue making requests until the response no longer includes a <code>NextToken</code> value, which indicates that all results have been retrieved.</p><br>
9 /// - [`source_location_name(impl Into<String>)`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::source_location_name) / [`set_source_location_name(Option<String>)`](crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::set_source_location_name):<br>required: **true**<br><p>The name of the source location associated with this Live Sources list.</p><br>
10 /// - On success, responds with [`ListLiveSourcesOutput`](crate::operation::list_live_sources::ListLiveSourcesOutput) with field(s):
11 /// - [`items(Option<Vec::<LiveSource>>)`](crate::operation::list_live_sources::ListLiveSourcesOutput::items): <p>Lists the live sources.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::list_live_sources::ListLiveSourcesOutput::next_token): <p>Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.</p>
13 /// - On failure, responds with [`SdkError<ListLiveSourcesError>`](crate::operation::list_live_sources::ListLiveSourcesError)
14 pub fn list_live_sources(&self) -> crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder {
15 crate::operation::list_live_sources::builders::ListLiveSourcesFluentBuilder::new(self.handle.clone())
16 }
17}