Class: Aws::Proton::Types::TemplateVersionSourceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::TemplateVersionSourceInput
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3ObjectSource
An S3 source object that includes the template bundle S3 path and name for a template minor version.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3 ⇒ Types::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 '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5756 5757 5758 |
# File 'lib/aws-sdk-proton/types.rb', line 5756 def unknown @unknown end |