aws_sdk_ecr/client/
deregister_pull_time_update_exclusion.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 [`DeregisterPullTimeUpdateExclusion`](crate::operation::deregister_pull_time_update_exclusion::builders::DeregisterPullTimeUpdateExclusionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`principal_arn(impl Into<String>)`](crate::operation::deregister_pull_time_update_exclusion::builders::DeregisterPullTimeUpdateExclusionFluentBuilder::principal_arn) / [`set_principal_arn(Option<String>)`](crate::operation::deregister_pull_time_update_exclusion::builders::DeregisterPullTimeUpdateExclusionFluentBuilder::set_principal_arn):<br>required: **true**<br><p>The ARN of the IAM principal to remove from the pull time update exclusion list.</p><br>
7    /// - On success, responds with [`DeregisterPullTimeUpdateExclusionOutput`](crate::operation::deregister_pull_time_update_exclusion::DeregisterPullTimeUpdateExclusionOutput) with field(s):
8    ///   - [`principal_arn(Option<String>)`](crate::operation::deregister_pull_time_update_exclusion::DeregisterPullTimeUpdateExclusionOutput::principal_arn): <p>The ARN of the IAM principal that was removed from the pull time update exclusion list.</p>
9    /// - On failure, responds with [`SdkError<DeregisterPullTimeUpdateExclusionError>`](crate::operation::deregister_pull_time_update_exclusion::DeregisterPullTimeUpdateExclusionError)
10    pub fn deregister_pull_time_update_exclusion(
11        &self,
12    ) -> crate::operation::deregister_pull_time_update_exclusion::builders::DeregisterPullTimeUpdateExclusionFluentBuilder {
13        crate::operation::deregister_pull_time_update_exclusion::builders::DeregisterPullTimeUpdateExclusionFluentBuilder::new(self.handle.clone())
14    }
15}