Class: Aws::Proton::Types::UpdateAccountSettingsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::UpdateAccountSettingsInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
Note:
When making an API call, you may pass UpdateAccountSettingsInput data as a hash:
{
pipeline_provisioning_repository: {
branch: "GitBranchName", # required
name: "RepositoryName", # required
provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
},
pipeline_service_role_arn: "PipelineRoleArn",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pipeline_provisioning_repository ⇒ Types::RepositoryBranchInput
A repository for pipeline provisioning.
-
#pipeline_service_role_arn ⇒ String
The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines.
Instance Attribute Details
#pipeline_provisioning_repository ⇒ Types::RepositoryBranchInput
A repository for pipeline provisioning. Specify it if you have environments configured for self-managed provisioning with services that include pipelines.
5310 5311 5312 5313 5314 5315 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5310 class UpdateAccountSettingsInput < Struct.new( :pipeline_provisioning_repository, :pipeline_service_role_arn) SENSITIVE = [] include Aws::Structure end |
#pipeline_service_role_arn ⇒ 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.
5310 5311 5312 5313 5314 5315 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5310 class UpdateAccountSettingsInput < Struct.new( :pipeline_provisioning_repository, :pipeline_service_role_arn) SENSITIVE = [] include Aws::Structure end |