Class: Aws::AppRunner::Types::SourceCodeVersion

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb

Overview

Identifies a version of code that App Runner refers to within a source code repository.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

The type of version identifier.

For a git-based repository, branches represent versions.

Returns:

  • (String)


2700
2701
2702
2703
2704
2705
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2700

class SourceCodeVersion < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

A source code version.

For a git-based repository, a branch name maps to a specific version. App Runner uses the most recent commit to the branch.

Returns:

  • (String)


2700
2701
2702
2703
2704
2705
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2700

class SourceCodeVersion < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end