pub struct UpdateAccountSettings { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateAccountSettings
.
Update Proton settings that are used for multiple services in the Amazon Web Services account.
Implementations§
source§impl UpdateAccountSettings
impl UpdateAccountSettings
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateAccountSettings, AwsResponseRetryClassifier>, SdkError<UpdateAccountSettingsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateAccountSettings, AwsResponseRetryClassifier>, SdkError<UpdateAccountSettingsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateAccountSettingsOutput, SdkError<UpdateAccountSettingsError>>
pub async fn send(
self
) -> Result<UpdateAccountSettingsOutput, SdkError<UpdateAccountSettingsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn pipeline_service_role_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_service_role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.
To remove a previously configured ARN, specify an empty string.
sourcepub fn set_pipeline_service_role_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_service_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.
To remove a previously configured ARN, specify an empty string.
sourcepub fn pipeline_provisioning_repository(
self,
input: RepositoryBranchInput
) -> Self
pub fn pipeline_provisioning_repository(
self,
input: RepositoryBranchInput
) -> Self
A linked repository for pipeline provisioning. Specify it if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository
.
To remove a previously configured repository, set deletePipelineProvisioningRepository
to true
, and don't set pipelineProvisioningRepository
.
sourcepub fn set_pipeline_provisioning_repository(
self,
input: Option<RepositoryBranchInput>
) -> Self
pub fn set_pipeline_provisioning_repository(
self,
input: Option<RepositoryBranchInput>
) -> Self
A linked repository for pipeline provisioning. Specify it if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository
.
To remove a previously configured repository, set deletePipelineProvisioningRepository
to true
, and don't set pipelineProvisioningRepository
.
sourcepub fn delete_pipeline_provisioning_repository(self, input: bool) -> Self
pub fn delete_pipeline_provisioning_repository(self, input: bool) -> Self
Set to true
to remove a configured pipeline repository from the account settings. Don't set this field if you are updating the configured pipeline repository.
sourcepub fn set_delete_pipeline_provisioning_repository(
self,
input: Option<bool>
) -> Self
pub fn set_delete_pipeline_provisioning_repository(
self,
input: Option<bool>
) -> Self
Set to true
to remove a configured pipeline repository from the account settings. Don't set this field if you are updating the configured pipeline repository.
sourcepub fn pipeline_codebuild_role_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_codebuild_role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Proton assumes this role for CodeBuild-based provisioning.
sourcepub fn set_pipeline_codebuild_role_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_codebuild_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Proton assumes this role for CodeBuild-based provisioning.
Trait Implementations§
source§impl Clone for UpdateAccountSettings
impl Clone for UpdateAccountSettings
source§fn clone(&self) -> UpdateAccountSettings
fn clone(&self) -> UpdateAccountSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more