pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateAccountSettingsInput
.
Implementations§
source§impl Builder
impl Builder
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.
sourcepub fn build(self) -> Result<UpdateAccountSettingsInput, BuildError>
pub fn build(self) -> Result<UpdateAccountSettingsInput, BuildError>
Consumes the builder and constructs a UpdateAccountSettingsInput
.