Class: Aws::CloudFormation::Types::ValidateTemplateInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ValidateTemplateInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The input for ValidateTemplate action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#template_body ⇒ String
Structure that contains the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.
-
#template_url ⇒ String
The URL of a file that contains the template body.
Instance Attribute Details
#template_body ⇒ String
Structure that contains the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.
Conditional: You must pass ‘TemplateURL` or `TemplateBody`. If both are passed, only `TemplateBody` is used.
12143 12144 12145 12146 12147 12148 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 12143 class ValidateTemplateInput < Struct.new( :template_body, :template_url) SENSITIVE = [] include Aws::Structure end |
#template_url ⇒ String
The URL of a file that contains the template body. The URL must point to a template (max size: 1 MB) that is located in an Amazon S3 bucket or a Systems Manager document. The location for an Amazon S3 bucket must start with ‘https://`.
Conditional: You must pass ‘TemplateURL` or `TemplateBody`. If both are passed, only `TemplateBody` is used.
12143 12144 12145 12146 12147 12148 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 12143 class ValidateTemplateInput < Struct.new( :template_body, :template_url) SENSITIVE = [] include Aws::Structure end |