aws_sdk_ecr/client/
delete_repository_creation_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 [`DeleteRepositoryCreationTemplate`](crate::operation::delete_repository_creation_template::builders::DeleteRepositoryCreationTemplateFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`prefix(impl Into<String>)`](crate::operation::delete_repository_creation_template::builders::DeleteRepositoryCreationTemplateFluentBuilder::prefix) / [`set_prefix(Option<String>)`](crate::operation::delete_repository_creation_template::builders::DeleteRepositoryCreationTemplateFluentBuilder::set_prefix):<br>required: **true**<br><p>The repository namespace prefix associated with the repository creation template.</p><br>
7    /// - On success, responds with [`DeleteRepositoryCreationTemplateOutput`](crate::operation::delete_repository_creation_template::DeleteRepositoryCreationTemplateOutput) with field(s):
8    ///   - [`registry_id(Option<String>)`](crate::operation::delete_repository_creation_template::DeleteRepositoryCreationTemplateOutput::registry_id): <p>The registry ID associated with the request.</p>
9    ///   - [`repository_creation_template(Option<RepositoryCreationTemplate>)`](crate::operation::delete_repository_creation_template::DeleteRepositoryCreationTemplateOutput::repository_creation_template): <p>The details of the repository creation template that was deleted.</p>
10    /// - On failure, responds with [`SdkError<DeleteRepositoryCreationTemplateError>`](crate::operation::delete_repository_creation_template::DeleteRepositoryCreationTemplateError)
11    pub fn delete_repository_creation_template(
12        &self,
13    ) -> crate::operation::delete_repository_creation_template::builders::DeleteRepositoryCreationTemplateFluentBuilder {
14        crate::operation::delete_repository_creation_template::builders::DeleteRepositoryCreationTemplateFluentBuilder::new(self.handle.clone())
15    }
16}