Struct aws_sdk_proton::operation::update_account_settings::builders::UpdateAccountSettingsFluentBuilder
source · pub struct UpdateAccountSettingsFluentBuilder { /* 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 UpdateAccountSettingsFluentBuilder
impl UpdateAccountSettingsFluentBuilder
sourcepub fn as_input(&self) -> &UpdateAccountSettingsInputBuilder
pub fn as_input(&self) -> &UpdateAccountSettingsInputBuilder
Access the UpdateAccountSettings as a reference.
sourcepub async fn send(
self
) -> Result<UpdateAccountSettingsOutput, SdkError<UpdateAccountSettingsError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateAccountSettingsOutput, SdkError<UpdateAccountSettingsError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<UpdateAccountSettingsOutput, UpdateAccountSettingsError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateAccountSettingsOutput, UpdateAccountSettingsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_pipeline_service_role_arn(&self) -> &Option<String>
pub fn get_pipeline_service_role_arn(&self) -> &Option<String>
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 get_pipeline_provisioning_repository(
&self
) -> &Option<RepositoryBranchInput>
pub fn get_pipeline_provisioning_repository( &self ) -> &Option<RepositoryBranchInput>
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 get_delete_pipeline_provisioning_repository(&self) -> &Option<bool>
pub fn get_delete_pipeline_provisioning_repository(&self) -> &Option<bool>
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.
sourcepub fn get_pipeline_codebuild_role_arn(&self) -> &Option<String>
pub fn get_pipeline_codebuild_role_arn(&self) -> &Option<String>
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 UpdateAccountSettingsFluentBuilder
impl Clone for UpdateAccountSettingsFluentBuilder
source§fn clone(&self) -> UpdateAccountSettingsFluentBuilder
fn clone(&self) -> UpdateAccountSettingsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more