Class: Aws::AppRunner::Types::CodeRepository

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#code_configurationTypes::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_urlString

The location of the repository that contains the source code.

Returns:

  • (String)


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_versionTypes::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_directoryString

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.

Returns:

  • (String)


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