aws_sdk_mediatailor/client/describe_source_location.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 [`DescribeSourceLocation`](crate::operation::describe_source_location::builders::DescribeSourceLocationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`source_location_name(impl Into<String>)`](crate::operation::describe_source_location::builders::DescribeSourceLocationFluentBuilder::source_location_name) / [`set_source_location_name(Option<String>)`](crate::operation::describe_source_location::builders::DescribeSourceLocationFluentBuilder::set_source_location_name):<br>required: **true**<br><p>The name of the source location.</p><br>
7 /// - On success, responds with [`DescribeSourceLocationOutput`](crate::operation::describe_source_location::DescribeSourceLocationOutput) with field(s):
8 /// - [`access_configuration(Option<AccessConfiguration>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::access_configuration): <p>The access configuration for the source location.</p>
9 /// - [`arn(Option<String>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::arn): <p>The ARN of the source location.</p>
10 /// - [`creation_time(Option<DateTime>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::creation_time): <p>The timestamp that indicates when the source location was created.</p>
11 /// - [`default_segment_delivery_configuration(Option<DefaultSegmentDeliveryConfiguration>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::default_segment_delivery_configuration): <p>The default segment delivery configuration settings.</p>
12 /// - [`http_configuration(Option<HttpConfiguration>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::http_configuration): <p>The HTTP package configuration settings for the source location.</p>
13 /// - [`last_modified_time(Option<DateTime>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::last_modified_time): <p>The timestamp that indicates when the source location was last modified.</p>
14 /// - [`segment_delivery_configurations(Option<Vec::<SegmentDeliveryConfiguration>>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::segment_delivery_configurations): <p>A list of the segment delivery configurations associated with this resource.</p>
15 /// - [`source_location_name(Option<String>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::source_location_name): <p>The name of the source location.</p>
16 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_source_location::DescribeSourceLocationOutput::tags): <p>The tags assigned to the source location. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html">Tagging AWS Elemental MediaTailor Resources</a>.</p>
17 /// - On failure, responds with [`SdkError<DescribeSourceLocationError>`](crate::operation::describe_source_location::DescribeSourceLocationError)
18 pub fn describe_source_location(&self) -> crate::operation::describe_source_location::builders::DescribeSourceLocationFluentBuilder {
19 crate::operation::describe_source_location::builders::DescribeSourceLocationFluentBuilder::new(self.handle.clone())
20 }
21}