aws_sdk_codebuild/client/invalidate_project_cache.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 [`InvalidateProjectCache`](crate::operation::invalidate_project_cache::builders::InvalidateProjectCacheFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`project_name(impl Into<String>)`](crate::operation::invalidate_project_cache::builders::InvalidateProjectCacheFluentBuilder::project_name) / [`set_project_name(Option<String>)`](crate::operation::invalidate_project_cache::builders::InvalidateProjectCacheFluentBuilder::set_project_name):<br>required: **true**<br><p>The name of the CodeBuild build project that the cache is reset for.</p><br>
7 /// - On success, responds with [`InvalidateProjectCacheOutput`](crate::operation::invalidate_project_cache::InvalidateProjectCacheOutput)
8 /// - On failure, responds with [`SdkError<InvalidateProjectCacheError>`](crate::operation::invalidate_project_cache::InvalidateProjectCacheError)
9 pub fn invalidate_project_cache(&self) -> crate::operation::invalidate_project_cache::builders::InvalidateProjectCacheFluentBuilder {
10 crate::operation::invalidate_project_cache::builders::InvalidateProjectCacheFluentBuilder::new(self.handle.clone())
11 }
12}