Class: Aws::Proton::Types::TemplateVersionSourceInput

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

Overview

Note:

TemplateVersionSourceInput is a union - when making an API calls you must set exactly one of the members.

Template version source data.

Direct Known Subclasses

S3, Unknown

Defined Under Namespace

Classes: S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3Types::S3ObjectSource

An S3 source object that includes the template bundle S3 path and name for a template minor version.



5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5756

class TemplateVersionSourceInput < Struct.new(
  :s3,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3 < TemplateVersionSourceInput; end
  class Unknown < TemplateVersionSourceInput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5756
5757
5758
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5756

def unknown
  @unknown
end