aws_sdk_iotthingsgraph/client/deploy_system_instance.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 [`DeploySystemInstance`](crate::operation::deploy_system_instance::builders::DeploySystemInstanceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`id(impl Into<String>)`](crate::operation::deploy_system_instance::builders::DeploySystemInstanceFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::deploy_system_instance::builders::DeploySystemInstanceFluentBuilder::set_id):<br>required: **false**<br><p>The ID of the system instance. This value is returned by the <code>CreateSystemInstance</code> action.</p> <p>The ID should be in the following format.</p> <p><code>urn:tdm:REGION/ACCOUNT ID/default:deployment:DEPLOYMENTNAME</code></p><br>
7 /// - On success, responds with [`DeploySystemInstanceOutput`](crate::operation::deploy_system_instance::DeploySystemInstanceOutput) with field(s):
8 /// - [`summary(Option<SystemInstanceSummary>)`](crate::operation::deploy_system_instance::DeploySystemInstanceOutput::summary): <p>An object that contains summary information about a system instance that was deployed.</p>
9 /// - [`greengrass_deployment_id(Option<String>)`](crate::operation::deploy_system_instance::DeploySystemInstanceOutput::greengrass_deployment_id): <p>The ID of the Greengrass deployment used to deploy the system instance.</p>
10 /// - On failure, responds with [`SdkError<DeploySystemInstanceError>`](crate::operation::deploy_system_instance::DeploySystemInstanceError)
11 #[deprecated(note = "since: 2022-08-30")]
12 pub fn deploy_system_instance(&self) -> crate::operation::deploy_system_instance::builders::DeploySystemInstanceFluentBuilder {
13 crate::operation::deploy_system_instance::builders::DeploySystemInstanceFluentBuilder::new(self.handle.clone())
14 }
15}