Class: Aws::AppRunner::Types::SourceCodeVersion
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::SourceCodeVersion
- 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
-
#type ⇒ String
The type of version identifier.
-
#value ⇒ String
A source code version.
Instance Attribute Details
#type ⇒ String
The type of version identifier.
For a git-based repository, branches represent versions.
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 |
#value ⇒ String
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.
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 |