Class: Aws::AppRunner::Types::CodeRepository
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::CodeRepository
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes a source code repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_configuration ⇒ Types::CodeConfiguration
Configuration for building and running the service from a source code repository.
-
#repository_url ⇒ String
The location of the repository that contains the source code.
-
#source_code_version ⇒ Types::SourceCodeVersion
The version that should be used within the source code repository.
-
#source_directory ⇒ String
The path of the directory that stores source code and configuration files.
Instance Attribute Details
#code_configuration ⇒ Types::CodeConfiguration
Configuration for building and running the service from a source code repository.
CodeConfiguration
is required only for CreateService
request.
432 433 434 435 436 437 438 439 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 432 class CodeRepository < Struct.new( :repository_url, :source_code_version, :code_configuration, :source_directory) SENSITIVE = [] include Aws::Structure end |
#repository_url ⇒ String
The location of the repository that contains the source code.
432 433 434 435 436 437 438 439 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 432 class CodeRepository < Struct.new( :repository_url, :source_code_version, :code_configuration, :source_directory) SENSITIVE = [] include Aws::Structure end |
#source_code_version ⇒ Types::SourceCodeVersion
The version that should be used within the source code repository.
432 433 434 435 436 437 438 439 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 432 class CodeRepository < Struct.new( :repository_url, :source_code_version, :code_configuration, :source_directory) SENSITIVE = [] include Aws::Structure end |
#source_directory ⇒ String
The path of the directory that stores source code and configuration files. The build and start commands also execute from here. The path is absolute from root and, if not specified, defaults to the repository root.
432 433 434 435 436 437 438 439 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 432 class CodeRepository < Struct.new( :repository_url, :source_code_version, :code_configuration, :source_directory) SENSITIVE = [] include Aws::Structure end |