aws_sdk_robomaker/client/describe_world_template.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 [`DescribeWorldTemplate`](crate::operation::describe_world_template::builders::DescribeWorldTemplateFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`template(impl Into<String>)`](crate::operation::describe_world_template::builders::DescribeWorldTemplateFluentBuilder::template) / [`set_template(Option<String>)`](crate::operation::describe_world_template::builders::DescribeWorldTemplateFluentBuilder::set_template):<br>required: **true**<br><p>The Amazon Resource Name (arn) of the world template you want to describe.</p><br>
7 /// - On success, responds with [`DescribeWorldTemplateOutput`](crate::operation::describe_world_template::DescribeWorldTemplateOutput) with field(s):
8 /// - [`arn(Option<String>)`](crate::operation::describe_world_template::DescribeWorldTemplateOutput::arn): <p>The Amazon Resource Name (ARN) of the world template.</p>
9 /// - [`client_request_token(Option<String>)`](crate::operation::describe_world_template::DescribeWorldTemplateOutput::client_request_token): <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
10 /// - [`name(Option<String>)`](crate::operation::describe_world_template::DescribeWorldTemplateOutput::name): <p>The name of the world template.</p>
11 /// - [`created_at(Option<DateTime>)`](crate::operation::describe_world_template::DescribeWorldTemplateOutput::created_at): <p>The time, in milliseconds since the epoch, when the world template was created.</p>
12 /// - [`last_updated_at(Option<DateTime>)`](crate::operation::describe_world_template::DescribeWorldTemplateOutput::last_updated_at): <p>The time, in milliseconds since the epoch, when the world template was last updated.</p>
13 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_world_template::DescribeWorldTemplateOutput::tags): <p>A map that contains tag keys and tag values that are attached to the world template.</p>
14 /// - [`version(Option<String>)`](crate::operation::describe_world_template::DescribeWorldTemplateOutput::version): <p>The version of the world template that you're using.</p>
15 /// - On failure, responds with [`SdkError<DescribeWorldTemplateError>`](crate::operation::describe_world_template::DescribeWorldTemplateError)
16 pub fn describe_world_template(&self) -> crate::operation::describe_world_template::builders::DescribeWorldTemplateFluentBuilder {
17 crate::operation::describe_world_template::builders::DescribeWorldTemplateFluentBuilder::new(self.handle.clone())
18 }
19}