Class: Aws::Omics::Types::SourceReference

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

Instance Attribute Details

#typeString

The type of source reference, such as branch, tag, or commit.

Returns:

  • (String)


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

#valueString

The value of the source reference, such as the branch name, tag name, or commit ID.

Returns:

  • (String)


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