Class: Aws::Omics::Types::SourceReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::Omics::Types::SourceReference
- Defined in:
- gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb
Overview
Contains information about the source reference in a code repository, such as a branch, tag, or commit.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type ⇒ String
The type of source reference, such as branch, tag, or commit.
-
#value ⇒ String
The value of the source reference, such as the branch name, tag name, or commit ID.
Instance Attribute Details
#type ⇒ String
The type of source reference, such as branch, tag, or commit.
6615 6616 6617 6618 6619 6620 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 6615 class SourceReference < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the source reference, such as the branch name, tag name, or commit ID.
6615 6616 6617 6618 6619 6620 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 6615 class SourceReference < Struct.new( :type, :value) SENSITIVE = [] include Aws::Structure end |