Method: Aws::CloudFormation::Types::UpdateStackInput#parameters
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
#parameters ⇒ Array<Types::Parameter>
A list of Parameter structures that specify input parameters for the stack. For more information, see the [Parameter] data type.
[1]: docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html
12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 12135 class UpdateStackInput < Struct.new( :stack_name, :template_body, :template_url, :use_previous_template, :stack_policy_during_update_body, :stack_policy_during_update_url, :parameters, :capabilities, :resource_types, :role_arn, :rollback_configuration, :stack_policy_body, :stack_policy_url, :notification_arns, :tags, :disable_rollback, :client_request_token, :retain_except_on_create) SENSITIVE = [] include Aws::Structure end |