aws_sdk_codedeploy/client/
delete_resources_by_external_id.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 [`DeleteResourcesByExternalId`](crate::operation::delete_resources_by_external_id::builders::DeleteResourcesByExternalIdFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`external_id(impl Into<String>)`](crate::operation::delete_resources_by_external_id::builders::DeleteResourcesByExternalIdFluentBuilder::external_id) / [`set_external_id(Option<String>)`](crate::operation::delete_resources_by_external_id::builders::DeleteResourcesByExternalIdFluentBuilder::set_external_id):<br>required: **false**<br><p>The unique ID of an external resource (for example, a CloudFormation stack ID) that is linked to one or more CodeDeploy resources.</p><br>
7    /// - On success, responds with [`DeleteResourcesByExternalIdOutput`](crate::operation::delete_resources_by_external_id::DeleteResourcesByExternalIdOutput)
8    /// - On failure, responds with [`SdkError<DeleteResourcesByExternalIdError>`](crate::operation::delete_resources_by_external_id::DeleteResourcesByExternalIdError)
9    pub fn delete_resources_by_external_id(
10        &self,
11    ) -> crate::operation::delete_resources_by_external_id::builders::DeleteResourcesByExternalIdFluentBuilder {
12        crate::operation::delete_resources_by_external_id::builders::DeleteResourcesByExternalIdFluentBuilder::new(self.handle.clone())
13    }
14}