Class: Aws::Proton::Types::AccountSettings
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Proton::Types::AccountSettings
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-proton/types.rb
 
Overview
Proton settings that are used for multiple services in the Amazon Web Services account.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #pipeline_codebuild_role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the service role that Proton uses for provisioning pipelines.
 - 
  
    
      #pipeline_provisioning_repository  ⇒ Types::RepositoryBranch 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The linked 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_codebuild_role_arn ⇒ String
The Amazon Resource Name (ARN) of the service role that Proton uses for provisioning pipelines. Proton assumes this role for CodeBuild-based provisioning.
      76 77 78 79 80 81 82  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 76 class AccountSettings < Struct.new( :pipeline_codebuild_role_arn, :pipeline_provisioning_repository, :pipeline_service_role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#pipeline_provisioning_repository ⇒ Types::RepositoryBranch
The linked repository for pipeline provisioning. Required 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.
      76 77 78 79 80 81 82  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 76 class AccountSettings < Struct.new( :pipeline_codebuild_role_arn, :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.
      76 77 78 79 80 81 82  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 76 class AccountSettings < Struct.new( :pipeline_codebuild_role_arn, :pipeline_provisioning_repository, :pipeline_service_role_arn) SENSITIVE = [] include Aws::Structure end  |