aws-sdk-codestar 1.39.0

AWS SDK for AWS CodeStar
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UntagProject`](crate::operation::untag_project::builders::UntagProjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::untag_project::builders::UntagProjectFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::untag_project::builders::UntagProjectFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the project to remove tags from.</p><br>
    ///   - [`tags(impl Into<String>)`](crate::operation::untag_project::builders::UntagProjectFluentBuilder::tags) / [`set_tags(Option<Vec::<String>>)`](crate::operation::untag_project::builders::UntagProjectFluentBuilder::set_tags):<br>required: **true**<br><p>The tags to remove from the project.</p><br>
    /// - On success, responds with [`UntagProjectOutput`](crate::operation::untag_project::UntagProjectOutput)
    /// - On failure, responds with [`SdkError<UntagProjectError>`](crate::operation::untag_project::UntagProjectError)
    pub fn untag_project(&self) -> crate::operation::untag_project::builders::UntagProjectFluentBuilder {
        crate::operation::untag_project::builders::UntagProjectFluentBuilder::new(self.handle.clone())
    }
}