bin/Net45/AWSSDK.CloudFormation.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>AWSSDK.CloudFormation</name>
    </assembly>
    <members>
        <member name="T:Amazon.CloudFormation.Internal.ProcessRequestHandler">
            <summary>
            Custom pipeline handler to pass an empty string NotificationARNs request property with collection is empty.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Internal.ProcessRequestHandler.InvokeSync(Amazon.Runtime.IExecutionContext)">
            <summary>
            Calls pre invoke logic before calling the next handler
            in the pipeline.
            </summary>
            <param name="executionContext">The execution context which contains both the
            requests and response context.</param>
        </member>
        <member name="M:Amazon.CloudFormation.Internal.ProcessRequestHandler.InvokeAsync``1(Amazon.Runtime.IExecutionContext)">
            <summary>
            Calls pre invoke logic before calling the next handler
            in the pipeline.
            </summary>
            <typeparam name="T">The response type for the current request.</typeparam>
            <param name="executionContext">The execution context, it contains the
            request and response context.</param>
            <returns>A task that represents the asynchronous operation.</returns>
        </member>
        <member name="M:Amazon.CloudFormation.Internal.ProcessRequestHandler.PreInvoke(Amazon.Runtime.IExecutionContext)">
            <summary>
            Set NotificationARNs to empty if the collection is empty before continuing on in the pipeline.
            </summary>
            <param name="executionContext"></param>
        </member>
        <member name="T:Amazon.CloudFormation.Model.UpdateStackRequest">
            <summary>
            The input for <a>UpdateStack</a> action.
            </summary>
            <summary>
            Container for the parameters to the UpdateStack operation.
            Updates a stack as specified in the template. After the call completes successfully,
            the stack update starts. You can check the status of the stack via the <a>DescribeStacks</a>
            action.
            
             
            <para>
            To get a copy of the template for an existing stack, you can use the <a>GetTemplate</a>
            action.
            </para>
             
            <para>
            For more information about creating an update template, updating a stack, and monitoring
            the progress of the update, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html">Updating
            a Stack</a>.
            </para>
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.UpdateStackRequest.#ctor">
            <summary>
            Default Constructor
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            A list of values that you must specify before AWS CloudFormation can update certain
            stacks. Some stack templates might include resources that can affect permissions in
            your AWS account, for example, by creating new AWS Identity and Access Management
            (IAM) users. For those stacks, you must explicitly acknowledge their capabilities
            by specifying this parameter.
            </para>
             
            <para>
            The only valid values are <code>CAPABILITY_IAM</code> and <code>CAPABILITY_NAMED_IAM</code>.
            The following resources require you to specify this parameter: <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
            AWS::IAM::AccessKey</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
            AWS::IAM::Group</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
            AWS::IAM::InstanceProfile</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
            AWS::IAM::Policy</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
            AWS::IAM::Role</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
            AWS::IAM::User</a>, and <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
            AWS::IAM::UserToGroupAddition</a>. If your stack template contains these resources,
            we recommend that you review all permissions associated with them and edit their permissions
            if necessary.
            </para>
             
            <para>
            If you have IAM resources, you can specify either capability. If you have IAM resources
            with custom names, you must specify <code>CAPABILITY_NAMED_IAM</code>. If you don't
            specify this parameter, this action returns an <code>InsufficientCapabilities</code>
            error.
            </para>
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            A unique identifier for this <code>UpdateStack</code> request. Specify this token
            if you plan to retry requests so that AWS CloudFormation knows that you're not attempting
            to update a stack with the same name. You might retry <code>UpdateStack</code> requests
            to ensure that AWS CloudFormation successfully received them.
            </para>
             
            <para>
            All events triggered by a given stack operation are assigned the same client request
            token, which you can use to track operations. For example, if you execute a <code>CreateStack</code>
            operation with the token <code>token1</code>, then all the <code>StackEvents</code>
            generated by that operation will have <code>ClientRequestToken</code> set as <code>token1</code>.
            </para>
             
            <para>
            In the console, stack operations display the client request token on the Events tab.
            Stack operations that are initiated from the console use the token format <i>Console-StackOperation-ID</i>,
            which helps you easily identify the stack operation . For example, if you create a
            stack using the console, each stack event would be assigned the same token in the
            following format: <code>Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002</code>.
            
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.NotificationARNs">
            <summary>
            Gets and sets the property NotificationARNs.
            <para>
            Amazon Simple Notification Service topic Amazon Resource Names (ARNs) that AWS CloudFormation
            associates with the stack. Specify an empty list to remove all notification topics.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of <code>Parameter</code> structures that specify input parameters for the
            stack. For more information, see the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
            data type.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.ResourceTypes">
            <summary>
            Gets and sets the property ResourceTypes.
            <para>
            The template resource types that you have permissions to work with for this update
            stack action, such as <code>AWS::EC2::Instance</code>, <code>AWS::EC2::*</code>, or
            <code>Custom::MyCustomInstance</code>.
            </para>
             
            <para>
            If the list of resource types doesn't include a resource that you're updating, the
            stack update fails. By default, AWS CloudFormation grants permissions to all resource
            types. AWS Identity and Access Management (IAM) uses this parameter for AWS CloudFormation-specific
            condition keys in IAM policies. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html">Controlling
            Access with AWS Identity and Access Management</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.RoleARN">
            <summary>
            Gets and sets the property RoleARN.
            <para>
            The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role
            that AWS CloudFormation assumes to update the stack. AWS CloudFormation uses the role's
            credentials to make calls on your behalf. AWS CloudFormation always uses this role
            for all future operations on the stack. As long as users have permission to operate
            on the stack, AWS CloudFormation uses this role even if the users don't have permission
            to pass it. Ensure that the role grants least privilege.
            </para>
             
            <para>
            If you don't specify a value, AWS CloudFormation uses the role that was previously
            associated with the stack. If no role is available, AWS CloudFormation uses a temporary
            session that is generated from your user credentials.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or unique stack ID of the stack to update.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.StackPolicyBody">
            <summary>
            Gets and sets the property StackPolicyBody.
            <para>
            Structure containing a new stack policy body. You can specify either the <code>StackPolicyBody</code>
            or the <code>StackPolicyURL</code> parameter, but not both.
            </para>
             
            <para>
            You might update the stack policy, for example, in order to protect a new resource
            that you created during a stack update. If you do not specify a stack policy, the
            current policy that is associated with the stack is unchanged.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.StackPolicyDuringUpdateBody">
            <summary>
            Gets and sets the property StackPolicyDuringUpdateBody.
            <para>
            Structure containing the temporary overriding stack policy body. You can specify either
            the <code>StackPolicyDuringUpdateBody</code> or the <code>StackPolicyDuringUpdateURL</code>
            parameter, but not both.
            </para>
             
            <para>
            If you want to update protected resources, specify a temporary overriding stack policy
            during this update. If you do not specify a stack policy, the current policy that
            is associated with the stack will be used.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.StackPolicyDuringUpdateURL">
            <summary>
            Gets and sets the property StackPolicyDuringUpdateURL.
            <para>
            Location of a file containing the temporary overriding stack policy. The URL must
            point to a policy (max size: 16KB) located in an S3 bucket in the same region as the
            stack. You can specify either the <code>StackPolicyDuringUpdateBody</code> or the
            <code>StackPolicyDuringUpdateURL</code> parameter, but not both.
            </para>
             
            <para>
            If you want to update protected resources, specify a temporary overriding stack policy
            during this update. If you do not specify a stack policy, the current policy that
            is associated with the stack will be used.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.StackPolicyURL">
            <summary>
            Gets and sets the property StackPolicyURL.
            <para>
            Location of a file containing the updated stack policy. The URL must point to a policy
            (max size: 16KB) located in an S3 bucket in the same region as the stack. You can
            specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code>
            parameter, but not both.
            </para>
             
            <para>
            You might update the stack policy, for example, in order to protect a new resource
            that you created during a stack update. If you do not specify a stack policy, the
            current policy that is associated with the stack is unchanged.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            Key-value pairs to associate with this stack. AWS CloudFormation also propagates these
            tags to supported resources in the stack. You can specify a maximum number of 50 tags.
            </para>
             
            <para>
            If you don't specify this parameter, AWS CloudFormation doesn't modify the stack's
            tags. If you specify an empty value, AWS CloudFormation removes all associated tags.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            Structure containing the template body with a minimum length of 1 byte and a maximum
            length of 51,200 bytes. (For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.)
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>TemplateBody</code>,
            <code>TemplateURL</code>, or set the <code>UsePreviousTemplate</code> to <code>true</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            Location of file containing the template body. The URL must point to a template that
            is located in an Amazon S3 bucket. For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>TemplateBody</code>,
            <code>TemplateURL</code>, or set the <code>UsePreviousTemplate</code> to <code>true</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackRequest.UsePreviousTemplate">
            <summary>
            Gets and sets the property UsePreviousTemplate.
            <para>
            Reuse the existing template that is associated with the stack that you are updating.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>TemplateBody</code>,
            <code>TemplateURL</code>, or set the <code>UsePreviousTemplate</code> to <code>true</code>.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.AccountGateResult">
            <summary>
            Structure that contains the results of the account gate function AWS CloudFormation
            StackSets invokes, if present, before proceeding with stack set operations in an account.
            
             
            <para>
            Account gating enables you to specify a Lamdba function for an account that encapsulates
            any requirements that must be met before AWS CloudFormation StackSets proceeds with
            stack set operations in that account. CloudFormation invokes the function each time
            stack set operations are initiated for that account, and only proceeds if the function
            returns a success code.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.AccountGateResult.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the account gate function.
            </para>
             <ul> <li>
            <para>
             <code>SUCCEEDED</code>: The account gate function has determined that the account
            passes any requirements for stack set operations to occur. AWS CloudFormation proceeds
            with stack operations in the account.
            </para>
             </li> <li>
            <para>
             <code>FAILED</code>: The account gate function has determined that the account does
            not meet the requirements for stack set operations to occur. AWS CloudFormation cancels
            the stack set operations in that account, and the stack set operation status is set
            to FAILED.
            </para>
             </li> <li>
            <para>
             <code>SKIPPED</code>: An account gate function has not been specified for the account,
            or the AWSCloudFormationStackSetExecutionRole of the stack set adminstration account
            lacks permissions to invoke the function. AWS CloudFormation proceeds with stack set
            operations in the account.
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.AccountGateResult.StatusReason">
            <summary>
            Gets and sets the property StatusReason.
            <para>
            The reason for the account gate status assigned to this account.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.AccountLimit">
            <summary>
            The AccountLimit data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.AccountLimit.Name">
            <summary>
            Gets and sets the property Name.
            <para>
            The name of the account limit. Currently, the only account limit is <code>StackLimit</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.AccountLimit.Value">
            <summary>
            Gets and sets the property Value.
            <para>
            The value that is associated with the account limit name.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.AlreadyExistsException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.AlreadyExistsException.#ctor(System.String)">
            <summary>
            Constructs a new AlreadyExistsException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.AlreadyExistsException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of AlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.AlreadyExistsException.#ctor(System.Exception)">
            <summary>
            Construct instance of AlreadyExistsException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.AlreadyExistsException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of AlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.AlreadyExistsException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of AlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.AlreadyExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the AlreadyExistsException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CancelUpdateStackRequest">
            <summary>
            Container for the parameters to the CancelUpdateStack operation.
            Cancels an update on the specified stack. If the call completes successfully, the
            stack rolls back the update and reverts to the previous stack configuration.
            
             <note>
            <para>
            You can cancel only stacks that are in the UPDATE_IN_PROGRESS state.
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CancelUpdateStackRequest.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            A unique identifier for this <code>CancelUpdateStack</code> request. Specify this
            token if you plan to retry requests so that AWS CloudFormation knows that you're not
            attempting to cancel an update on a stack with the same name. You might retry <code>CancelUpdateStack</code>
            requests to ensure that AWS CloudFormation successfully received them.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CancelUpdateStackRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CancelUpdateStackResponse">
            <summary>
            This is the response object from the CancelUpdateStack operation.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Change">
            <summary>
            The <code>Change</code> structure describes the changes AWS CloudFormation will perform
            if you execute the change set.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Change.ResourceChange">
            <summary>
            Gets and sets the property ResourceChange.
            <para>
            A <code>ResourceChange</code> structure that describes the resource and action that
            AWS CloudFormation will perform.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Change.Type">
            <summary>
            Gets and sets the property Type.
            <para>
            The type of entity that AWS CloudFormation changes. Currently, the only entity type
            is <code>Resource</code>.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ChangeSetNotFoundException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.ChangeSetNotFoundException.#ctor(System.String)">
            <summary>
            Constructs a new ChangeSetNotFoundException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.ChangeSetNotFoundException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of ChangeSetNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.ChangeSetNotFoundException.#ctor(System.Exception)">
            <summary>
            Construct instance of ChangeSetNotFoundException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.ChangeSetNotFoundException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of ChangeSetNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.ChangeSetNotFoundException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of ChangeSetNotFoundException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.ChangeSetNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the ChangeSetNotFoundException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ChangeSetSummary">
            <summary>
            The <code>ChangeSetSummary</code> structure describes a change set, its status, and
            the stack with which it's associated.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.ChangeSetId">
            <summary>
            Gets and sets the property ChangeSetId.
            <para>
            The ID of the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.ChangeSetName">
            <summary>
            Gets and sets the property ChangeSetName.
            <para>
            The name of the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.CreationTime">
            <summary>
            Gets and sets the property CreationTime.
            <para>
            The start time when the change set was created, in UTC.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            Descriptive information about the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.ExecutionStatus">
            <summary>
            Gets and sets the property ExecutionStatus.
            <para>
            If the change set execution status is <code>AVAILABLE</code>, you can execute the
            change set. If you can’t execute the change set, the status indicates why. For example,
            a change set might be in an <code>UNAVAILABLE</code> state because AWS CloudFormation
            is still creating it or in an <code>OBSOLETE</code> state because the stack was already
            updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            The ID of the stack with which the change set is associated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name of the stack with which the change set is associated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The state of the change set, such as <code>CREATE_IN_PROGRESS</code>, <code>CREATE_COMPLETE</code>,
            or <code>FAILED</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ChangeSetSummary.StatusReason">
            <summary>
            Gets and sets the property StatusReason.
            <para>
            A description of the change set's status. For example, if your change set is in the
            <code>FAILED</code> state, AWS CloudFormation shows the error message.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest">
            <summary>
            Container for the parameters to the ContinueUpdateRollback operation.
            For a specified stack that is in the <code>UPDATE_ROLLBACK_FAILED</code> state, continues
            rolling it back to the <code>UPDATE_ROLLBACK_COMPLETE</code> state. Depending on the
            cause of the failure, you can manually <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed">
            fix the error</a> and continue the rollback. By continuing the rollback, you can return
            your stack to a working state (the <code>UPDATE_ROLLBACK_COMPLETE</code> state), and
            then try to update the stack again.
            
             
            <para>
            A stack goes into the <code>UPDATE_ROLLBACK_FAILED</code> state when AWS CloudFormation
            cannot roll back all changes after a failed stack update. For example, you might have
            a stack that is rolling back to an old database instance that was deleted outside
            of AWS CloudFormation. Because AWS CloudFormation doesn't know the database was deleted,
            it assumes that the database instance still exists and attempts to roll back to it,
            causing the update rollback to fail.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            A unique identifier for this <code>ContinueUpdateRollback</code> request. Specify
            this token if you plan to retry requests so that AWS CloudFormation knows that you're
            not attempting to continue the rollback to a stack with the same name. You might retry
            <code>ContinueUpdateRollback</code> requests to ensure that AWS CloudFormation successfully
            received them.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest.ResourcesToSkip">
            <summary>
            Gets and sets the property ResourcesToSkip.
            <para>
            A list of the logical IDs of the resources that AWS CloudFormation skips during the
            continue update rollback operation. You can specify only resources that are in the
            <code>UPDATE_FAILED</code> state because a rollback failed. You can't specify resources
            that are in the <code>UPDATE_FAILED</code> state for other reasons, for example, because
            an update was cancelled. To check why a resource update failed, use the <a>DescribeStackResources</a>
            action, and view the resource status reason.
            </para>
             <important>
            <para>
            Specify this property to skip rolling back resources that AWS CloudFormation can't
            successfully roll back. We recommend that you <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed">
            troubleshoot</a> resources before skipping them. AWS CloudFormation sets the status
            of the specified resources to <code>UPDATE_COMPLETE</code> and continues to roll back
            the stack. After the rollback is complete, the state of the skipped resources will
            be inconsistent with the state of the resources in the stack template. Before performing
            another stack update, you must update the stack or resources to be consistent with
            each other. If you don't, subsequent stack updates might fail, and the stack will
            become unrecoverable.
            </para>
             </important>
            <para>
            Specify the minimum number of resources required to successfully roll back your stack.
            For example, a failed resource update might cause dependent resources to fail. In
            this case, it might not be necessary to skip the dependent resources.
            </para>
             
            <para>
            To skip resources that are part of nested stacks, use the following format: <code>NestedStackName.ResourceLogicalID</code>.
            If you want to specify the logical ID of a stack resource (<code>Type: AWS::CloudFormation::Stack</code>)
            in the <code>ResourcesToSkip</code> list, then its corresponding embedded stack must
            be in one of the following states: <code>DELETE_IN_PROGRESS</code>, <code>DELETE_COMPLETE</code>,
            or <code>DELETE_FAILED</code>.
            </para>
             <note>
            <para>
            Don't confuse a child stack's name with its corresponding logical ID defined in the
            parent stack. For an example of a continue update rollback operation with nested stacks,
            see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html#nested-stacks">Using
            ResourcesToSkip to recover a nested stacks hierarchy</a>.
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest.RoleARN">
            <summary>
            Gets and sets the property RoleARN.
            <para>
            The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role
            that AWS CloudFormation assumes to roll back the stack. AWS CloudFormation uses the
            role's credentials to make calls on your behalf. AWS CloudFormation always uses this
            role for all future operations on the stack. As long as users have permission to operate
            on the stack, AWS CloudFormation uses this role even if the users don't have permission
            to pass it. Ensure that the role grants least privilege.
            </para>
             
            <para>
            If you don't specify a value, AWS CloudFormation uses the role that was previously
            associated with the stack. If no role is available, AWS CloudFormation uses a temporary
            session that is generated from your user credentials.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique ID of the stack that you want to continue rolling back.
            </para>
             <note>
            <para>
            Don't specify the name of a nested stack (a stack that was created by using the <code>AWS::CloudFormation::Stack</code>
            resource). Instead, use this operation on the parent stack (the stack that contains
            the <code>AWS::CloudFormation::Stack</code> resource).
            </para>
             </note>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ContinueUpdateRollbackResponse">
            <summary>
            The output for a <a>ContinueUpdateRollback</a> action.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateChangeSetRequest">
            <summary>
            Container for the parameters to the CreateChangeSet operation.
            Creates a list of changes that will be applied to a stack so that you can review the
            changes before executing them. You can create a change set for a stack that doesn't
            exist or an existing stack. If you create a change set for a stack that doesn't exist,
            the change set shows all of the resources that AWS CloudFormation will create. If
            you create a change set for an existing stack, AWS CloudFormation compares the stack's
            information with the information that you submit in the change set and lists the differences.
            Use change sets to understand which resources AWS CloudFormation will create or change,
            and how it will change resources in an existing stack, before you create or update
            a stack.
            
             
            <para>
            To create a change set for a stack that doesn't exist, for the <code>ChangeSetType</code>
            parameter, specify <code>CREATE</code>. To create a change set for an existing stack,
            specify <code>UPDATE</code> for the <code>ChangeSetType</code> parameter. After the
            <code>CreateChangeSet</code> call successfully completes, AWS CloudFormation starts
            creating the change set. To check the status of the change set or to review it, use
            the <a>DescribeChangeSet</a> action.
            </para>
             
            <para>
            When you are satisfied with the changes the change set will make, execute the change
            set by using the <a>ExecuteChangeSet</a> action. AWS CloudFormation doesn't make changes
            until you execute the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            A list of values that you must specify before AWS CloudFormation can update certain
            stacks. Some stack templates might include resources that can affect permissions in
            your AWS account, for example, by creating new AWS Identity and Access Management
            (IAM) users. For those stacks, you must explicitly acknowledge their capabilities
            by specifying this parameter.
            </para>
             
            <para>
            The only valid values are <code>CAPABILITY_IAM</code> and <code>CAPABILITY_NAMED_IAM</code>.
            The following resources require you to specify this parameter: <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
            AWS::IAM::AccessKey</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
            AWS::IAM::Group</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
            AWS::IAM::InstanceProfile</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
            AWS::IAM::Policy</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
            AWS::IAM::Role</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
            AWS::IAM::User</a>, and <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
            AWS::IAM::UserToGroupAddition</a>. If your stack template contains these resources,
            we recommend that you review all permissions associated with them and edit their permissions
            if necessary.
            </para>
             
            <para>
            If you have IAM resources, you can specify either capability. If you have IAM resources
            with custom names, you must specify <code>CAPABILITY_NAMED_IAM</code>. If you don't
            specify this parameter, this action returns an <code>InsufficientCapabilities</code>
            error.
            </para>
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.ChangeSetName">
            <summary>
            Gets and sets the property ChangeSetName.
            <para>
            The name of the change set. The name must be unique among all change sets that are
            associated with the specified stack.
            </para>
             
            <para>
            A change set name can contain only alphanumeric, case sensitive characters and hyphens.
            It must start with an alphabetic character and cannot exceed 128 characters.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.ChangeSetType">
            <summary>
            Gets and sets the property ChangeSetType.
            <para>
            The type of change set operation. To create a change set for a new stack, specify
            <code>CREATE</code>. To create a change set for an existing stack, specify <code>UPDATE</code>.
            </para>
             
            <para>
            If you create a change set for a new stack, AWS Cloudformation creates a stack with
            a unique stack ID, but no template or resources. The stack will be in the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-describing-stacks.html#d0e11995">
            <code>REVIEW_IN_PROGRESS</code> </a> state until you execute the change set.
            </para>
             
            <para>
            By default, AWS CloudFormation specifies <code>UPDATE</code>. You can't use the <code>UPDATE</code>
            type to create a change set for a new stack or the <code>CREATE</code> type to create
            a change set for an existing stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.ClientToken">
            <summary>
            Gets and sets the property ClientToken.
            <para>
            A unique identifier for this <code>CreateChangeSet</code> request. Specify this token
            if you plan to retry requests so that AWS CloudFormation knows that you're not attempting
            to create another change set with the same name. You might retry <code>CreateChangeSet</code>
            requests to ensure that AWS CloudFormation successfully received them.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            A description to help you identify this change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.NotificationARNs">
            <summary>
            Gets and sets the property NotificationARNs.
            <para>
            The Amazon Resource Names (ARNs) of Amazon Simple Notification Service (Amazon SNS)
            topics that AWS CloudFormation associates with the stack. To remove all associated
            notification topics, specify an empty list.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of <code>Parameter</code> structures that specify input parameters for the
            change set. For more information, see the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
            data type.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.ResourceTypes">
            <summary>
            Gets and sets the property ResourceTypes.
            <para>
            The template resource types that you have permissions to work with if you execute
            this change set, such as <code>AWS::EC2::Instance</code>, <code>AWS::EC2::*</code>,
            or <code>Custom::MyCustomInstance</code>.
            </para>
             
            <para>
            If the list of resource types doesn't include a resource type that you're updating,
            the stack update fails. By default, AWS CloudFormation grants permissions to all resource
            types. AWS Identity and Access Management (IAM) uses this parameter for condition
            keys in IAM policies for AWS CloudFormation. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html">Controlling
            Access with AWS Identity and Access Management</a> in the AWS CloudFormation User
            Guide.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.RoleARN">
            <summary>
            Gets and sets the property RoleARN.
            <para>
            The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role
            that AWS CloudFormation assumes when executing the change set. AWS CloudFormation
            uses the role's credentials to make calls on your behalf. AWS CloudFormation uses
            this role for all future operations on the stack. As long as users have permission
            to operate on the stack, AWS CloudFormation uses this role even if the users don't
            have permission to pass it. Ensure that the role grants least privilege.
            </para>
             
            <para>
            If you don't specify a value, AWS CloudFormation uses the role that was previously
            associated with the stack. If no role is available, AWS CloudFormation uses a temporary
            session that is generated from your user credentials.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique ID of the stack for which you are creating a change set. AWS
            CloudFormation generates the change set by comparing this stack's information with
            the information that you submit, such as a modified template or different parameter
            input values.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            Key-value pairs to associate with this stack. AWS CloudFormation also propagates these
            tags to resources in the stack. You can specify a maximum of 50 tags.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            A structure that contains the body of the revised template, with a minimum length
            of 1 byte and a maximum length of 51,200 bytes. AWS CloudFormation generates the change
            set by comparing this template with the template of the stack that you specified.
            </para>
             
            <para>
            Conditional: You must specify only <code>TemplateBody</code> or <code>TemplateURL</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            The location of the file that contains the revised template. The URL must point to
            a template (max size: 460,800 bytes) that is located in an S3 bucket. AWS CloudFormation
            generates the change set by comparing this template with the stack that you specified.
            </para>
             
            <para>
            Conditional: You must specify only <code>TemplateBody</code> or <code>TemplateURL</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetRequest.UsePreviousTemplate">
            <summary>
            Gets and sets the property UsePreviousTemplate.
            <para>
            Whether to reuse the template that is associated with the stack to create the change
            set.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateChangeSetResponse">
            <summary>
            The output for the <a>CreateChangeSet</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetResponse.Id">
            <summary>
            Gets and sets the property Id.
            <para>
            The Amazon Resource Name (ARN) of the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateChangeSetResponse.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            The unique ID of the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreatedButModifiedException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.CreatedButModifiedException.#ctor(System.String)">
            <summary>
            Constructs a new CreatedButModifiedException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.CreatedButModifiedException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of CreatedButModifiedException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.CreatedButModifiedException.#ctor(System.Exception)">
            <summary>
            Construct instance of CreatedButModifiedException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.CreatedButModifiedException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of CreatedButModifiedException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.CreatedButModifiedException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of CreatedButModifiedException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.CreatedButModifiedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the CreatedButModifiedException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateStackInstancesRequest">
            <summary>
            Container for the parameters to the CreateStackInstances operation.
            Creates stack instances for the specified accounts, within the specified regions.
            A stack instance refers to a stack in a specific account and region. <code>Accounts</code>
            and <code>Regions</code> are required parameters—you must specify at least one account
            and one region.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackInstancesRequest.Accounts">
            <summary>
            Gets and sets the property Accounts.
            <para>
            The names of one or more AWS accounts that you want to create stack instances in the
            specified region(s) for.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackInstancesRequest.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique identifier for this stack set operation.
            </para>
             
            <para>
            The operation ID also functions as an idempotency token, to ensure that AWS CloudFormation
            performs the stack set operation only once, even if you retry the request multiple
            times. You might retry stack set operation requests to ensure that AWS CloudFormation
            successfully received them.
            </para>
             
            <para>
            If you don't specify an operation ID, the SDK generates one automatically.
            </para>
             
            <para>
            Repeating this stack set operation with a new operation ID retries all stack instances
            whose status is <code>OUTDATED</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackInstancesRequest.OperationPreferences">
            <summary>
            Gets and sets the property OperationPreferences.
            <para>
            Preferences for how AWS CloudFormation performs this stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackInstancesRequest.Regions">
            <summary>
            Gets and sets the property Regions.
            <para>
            The names of one or more regions where you want to create stack instances using the
            specified AWS account(s).
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackInstancesRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you want to create stack instances from.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateStackInstancesResponse">
            <summary>
            This is the response object from the CreateStackInstances operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackInstancesResponse.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique identifier for this stack set operation.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateStackRequest">
            <summary>
            Container for the parameters to the CreateStack operation.
            Creates a stack as specified in the template. After the call completes successfully,
            the stack creation starts. You can check the status of the stack via the <a>DescribeStacks</a>
            API.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            A list of values that you must specify before AWS CloudFormation can create certain
            stacks. Some stack templates might include resources that can affect permissions in
            your AWS account, for example, by creating new AWS Identity and Access Management
            (IAM) users. For those stacks, you must explicitly acknowledge their capabilities
            by specifying this parameter.
            </para>
             
            <para>
            The only valid values are <code>CAPABILITY_IAM</code> and <code>CAPABILITY_NAMED_IAM</code>.
            The following resources require you to specify this parameter: <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
            AWS::IAM::AccessKey</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
            AWS::IAM::Group</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
            AWS::IAM::InstanceProfile</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
            AWS::IAM::Policy</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
            AWS::IAM::Role</a>, <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
            AWS::IAM::User</a>, and <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
            AWS::IAM::UserToGroupAddition</a>. If your stack template contains these resources,
            we recommend that you review all permissions associated with them and edit their permissions
            if necessary.
            </para>
             
            <para>
            If you have IAM resources, you can specify either capability. If you have IAM resources
            with custom names, you must specify <code>CAPABILITY_NAMED_IAM</code>. If you don't
            specify this parameter, this action returns an <code>InsufficientCapabilities</code>
            error.
            </para>
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            A unique identifier for this <code>CreateStack</code> request. Specify this token
            if you plan to retry requests so that AWS CloudFormation knows that you're not attempting
            to create a stack with the same name. You might retry <code>CreateStack</code> requests
            to ensure that AWS CloudFormation successfully received them.
            </para>
             
            <para>
            All events triggered by a given stack operation are assigned the same client request
            token, which you can use to track operations. For example, if you execute a <code>CreateStack</code>
            operation with the token <code>token1</code>, then all the <code>StackEvents</code>
            generated by that operation will have <code>ClientRequestToken</code> set as <code>token1</code>.
            </para>
             
            <para>
            In the console, stack operations display the client request token on the Events tab.
            Stack operations that are initiated from the console use the token format <i>Console-StackOperation-ID</i>,
            which helps you easily identify the stack operation . For example, if you create a
            stack using the console, each stack event would be assigned the same token in the
            following format: <code>Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002</code>.
            
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.DisableRollback">
            <summary>
            Gets and sets the property DisableRollback.
            <para>
            Set to <code>true</code> to disable rollback of the stack if stack creation failed.
            You can specify either <code>DisableRollback</code> or <code>OnFailure</code>, but
            not both.
            </para>
             
            <para>
            Default: <code>false</code>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.NotificationARNs">
            <summary>
            Gets and sets the property NotificationARNs.
            <para>
            The Simple Notification Service (SNS) topic ARNs to publish stack related events.
            You can find your SNS topic ARNs using the SNS console or your Command Line Interface
            (CLI).
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.OnFailure">
            <summary>
            Gets and sets the property OnFailure.
            <para>
            Determines what action will be taken if stack creation fails. This must be one of:
            DO_NOTHING, ROLLBACK, or DELETE. You can specify either <code>OnFailure</code> or
            <code>DisableRollback</code>, but not both.
            </para>
             
            <para>
            Default: <code>ROLLBACK</code>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of <code>Parameter</code> structures that specify input parameters for the
            stack. For more information, see the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
            data type.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.ResourceTypes">
            <summary>
            Gets and sets the property ResourceTypes.
            <para>
            The template resource types that you have permissions to work with for this create
            stack action, such as <code>AWS::EC2::Instance</code>, <code>AWS::EC2::*</code>, or
            <code>Custom::MyCustomInstance</code>. Use the following syntax to describe template
            resource types: <code>AWS::*</code> (for all AWS resource), <code>Custom::*</code>
            (for all custom resources), <code>Custom::<i>logical_ID</i> </code> (for a specific
            custom resource), <code>AWS::<i>service_name</i>::*</code> (for all resources of a
            particular AWS service), and <code>AWS::<i>service_name</i>::<i>resource_logical_ID</i>
            </code> (for a specific AWS resource).
            </para>
             
            <para>
            If the list of resource types doesn't include a resource that you're creating, the
            stack creation fails. By default, AWS CloudFormation grants permissions to all resource
            types. AWS Identity and Access Management (IAM) uses this parameter for AWS CloudFormation-specific
            condition keys in IAM policies. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html">Controlling
            Access with AWS Identity and Access Management</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.RoleARN">
            <summary>
            Gets and sets the property RoleARN.
            <para>
            The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role
            that AWS CloudFormation assumes to create the stack. AWS CloudFormation uses the role's
            credentials to make calls on your behalf. AWS CloudFormation always uses this role
            for all future operations on the stack. As long as users have permission to operate
            on the stack, AWS CloudFormation uses this role even if the users don't have permission
            to pass it. Ensure that the role grants least privilege.
            </para>
             
            <para>
            If you don't specify a value, AWS CloudFormation uses the role that was previously
            associated with the stack. If no role is available, AWS CloudFormation uses a temporary
            session that is generated from your user credentials.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name that is associated with the stack. The name must be unique in the region
            in which you are creating the stack.
            </para>
             <note>
            <para>
            A stack name can contain only alphanumeric characters (case sensitive) and hyphens.
            It must start with an alphabetic character and cannot be longer than 128 characters.
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.StackPolicyBody">
            <summary>
            Gets and sets the property StackPolicyBody.
            <para>
            Structure containing the stack policy body. For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html">
            Prevent Updates to Stack Resources</a> in the <i>AWS CloudFormation User Guide</i>.
            You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code>
            parameter, but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.StackPolicyURL">
            <summary>
            Gets and sets the property StackPolicyURL.
            <para>
            Location of a file containing the stack policy. The URL must point to a policy (maximum
            size: 16 KB) located in an S3 bucket in the same region as the stack. You can specify
            either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter,
            but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            Key-value pairs to associate with this stack. AWS CloudFormation also propagates these
            tags to the resources created in the stack. A maximum number of 50 tags can be specified.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            Structure containing the template body with a minimum length of 1 byte and a maximum
            length of 51,200 bytes. For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify either the <code>TemplateBody</code> or the <code>TemplateURL</code>
            parameter, but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            Location of file containing the template body. The URL must point to a template (max
            size: 460,800 bytes) that is located in an Amazon S3 bucket. For more information,
            go to the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify either the <code>TemplateBody</code> or the <code>TemplateURL</code>
            parameter, but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.TimeoutInMinutes">
            <summary>
            Gets and sets the property TimeoutInMinutes.
            <para>
            The amount of time that can pass before the stack status becomes CREATE_FAILED; if
            <code>DisableRollback</code> is not set or is set to <code>false</code>, the stack
            will be rolled back.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateStackResponse">
            <summary>
            The output for a <a>CreateStack</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackResponse.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            Unique identifier of the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateStackSetRequest">
            <summary>
            Container for the parameters to the CreateStackSet operation.
            Creates a stack set.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            A list of values that you must specify before AWS CloudFormation can create certain
            stack sets. Some stack set templates might include resources that can affect permissions
            in your AWS account—for example, by creating new AWS Identity and Access Management
            (IAM) users. For those stack sets, you must explicitly acknowledge their capabilities
            by specifying this parameter.
            </para>
             
            <para>
            The only valid values are CAPABILITY_IAM and CAPABILITY_NAMED_IAM. The following resources
            require you to specify this parameter:
            </para>
             <ul> <li>
            <para>
            AWS::IAM::AccessKey
            </para>
             </li> <li>
            <para>
            AWS::IAM::Group
            </para>
             </li> <li>
            <para>
            AWS::IAM::InstanceProfile
            </para>
             </li> <li>
            <para>
            AWS::IAM::Policy
            </para>
             </li> <li>
            <para>
            AWS::IAM::Role
            </para>
             </li> <li>
            <para>
            AWS::IAM::User
            </para>
             </li> <li>
            <para>
            AWS::IAM::UserToGroupAddition
            </para>
             </li> </ul>
            <para>
            If your stack template contains these resources, we recommend that you review all
            permissions that are associated with them and edit their permissions if necessary.
            </para>
             
            <para>
            If you have IAM resources, you can specify either capability. If you have IAM resources
            with custom names, you must specify CAPABILITY_NAMED_IAM. If you don't specify this
            parameter, this action returns an <code>InsufficientCapabilities</code> error.
            </para>
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates.</a>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            A unique identifier for this <code>CreateStackSet</code> request. Specify this token
            if you plan to retry requests so that AWS CloudFormation knows that you're not attempting
            to create another stack set with the same name. You might retry <code>CreateStackSet</code>
            requests to ensure that AWS CloudFormation successfully received them.
            </para>
             
            <para>
            If you don't specify an operation ID, the SDK generates one automatically.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            A description of the stack set. You can use the description to identify the stack
            set's purpose or other important information.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            The input parameters for the stack set template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name to associate with the stack set. The name must be unique in the region where
            you create your stack set.
            </para>
             <note>
            <para>
            A stack name can contain only alphanumeric characters (case-sensitive) and hyphens.
            It must start with an alphabetic character and can't be longer than 128 characters.
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            The key-value pairs to associate with this stack set and the stacks created from it.
            AWS CloudFormation also propagates these tags to supported resources that are created
            in the stacks. A maximum number of 50 tags can be specified.
            </para>
             
            <para>
            If you specify tags as part of a <code>CreateStackSet</code> action, AWS CloudFormation
            checks to see if you have the required IAM permission to tag resources. If you don't,
            the entire <code>CreateStackSet</code> action fails with an <code>access denied</code>
            error, and the stack set is not created.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            The structure that contains the template body, with a minimum length of 1 byte and
            a maximum length of 51,200 bytes. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify either the TemplateBody or the TemplateURL parameter,
            but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            The location of the file that contains the template body. The URL must point to a
            template (maximum size: 460,800 bytes) that's located in an Amazon S3 bucket. For
            more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify either the TemplateBody or the TemplateURL parameter,
            but not both.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.CreateStackSetResponse">
            <summary>
            This is the response object from the CreateStackSet operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.CreateStackSetResponse.StackSetId">
            <summary>
            Gets and sets the property StackSetId.
            <para>
            The ID of the stack set that you're creating.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteChangeSetRequest">
            <summary>
            Container for the parameters to the DeleteChangeSet operation.
            Deletes the specified change set. Deleting change sets ensures that no one executes
            the wrong change set.
            
             
            <para>
            If the call successfully completes, AWS CloudFormation successfully deleted the change
            set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteChangeSetRequest.ChangeSetName">
            <summary>
            Gets and sets the property ChangeSetName.
            <para>
            The name or Amazon Resource Name (ARN) of the change set that you want to delete.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteChangeSetRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            If you specified the name of a change set to delete, specify the stack name or ID
            (ARN) that is associated with it.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteChangeSetResponse">
            <summary>
            The output for the <a>DeleteChangeSet</a> action.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteStackInstancesRequest">
            <summary>
            Container for the parameters to the DeleteStackInstances operation.
            Deletes stack instances for the specified accounts, in the specified regions.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackInstancesRequest.Accounts">
            <summary>
            Gets and sets the property Accounts.
            <para>
            The names of the AWS accounts that you want to delete stack instances for.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackInstancesRequest.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique identifier for this stack set operation.
            </para>
             
            <para>
            If you don't specify an operation ID, the SDK generates one automatically.
            </para>
             
            <para>
            The operation ID also functions as an idempotency token, to ensure that AWS CloudFormation
            performs the stack set operation only once, even if you retry the request multiple
            times. You can retry stack set operation requests to ensure that AWS CloudFormation
            successfully received them.
            </para>
             
            <para>
            Repeating this stack set operation with a new operation ID retries all stack instances
            whose status is <code>OUTDATED</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackInstancesRequest.OperationPreferences">
            <summary>
            Gets and sets the property OperationPreferences.
            <para>
            Preferences for how AWS CloudFormation performs this stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackInstancesRequest.Regions">
            <summary>
            Gets and sets the property Regions.
            <para>
            The regions where you want to delete stack set instances.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackInstancesRequest.RetainStacks">
            <summary>
            Gets and sets the property RetainStacks.
            <para>
            Removes the stack instances from the specified stack set, but doesn't delete the stacks.
            You can't reassociate a retained stack or add an existing, saved stack to a new stack
            set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackInstancesRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you want to delete stack instances for.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteStackInstancesResponse">
            <summary>
            This is the response object from the DeleteStackInstances operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackInstancesResponse.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique identifier for this stack set operation.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteStackRequest">
            <summary>
            Container for the parameters to the DeleteStack operation.
            Deletes a specified stack. Once the call completes successfully, stack deletion starts.
            Deleted stacks do not show up in the <a>DescribeStacks</a> API if the deletion has
            been completed successfully.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackRequest.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            A unique identifier for this <code>DeleteStack</code> request. Specify this token
            if you plan to retry requests so that AWS CloudFormation knows that you're not attempting
            to delete a stack with the same name. You might retry <code>DeleteStack</code> requests
            to ensure that AWS CloudFormation successfully received them.
            </para>
             
            <para>
            All events triggered by a given stack operation are assigned the same client request
            token, which you can use to track operations. For example, if you execute a <code>CreateStack</code>
            operation with the token <code>token1</code>, then all the <code>StackEvents</code>
            generated by that operation will have <code>ClientRequestToken</code> set as <code>token1</code>.
            </para>
             
            <para>
            In the console, stack operations display the client request token on the Events tab.
            Stack operations that are initiated from the console use the token format <i>Console-StackOperation-ID</i>,
            which helps you easily identify the stack operation . For example, if you create a
            stack using the console, each stack event would be assigned the same token in the
            following format: <code>Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002</code>.
            
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackRequest.RetainResources">
            <summary>
            Gets and sets the property RetainResources.
            <para>
            For stacks in the <code>DELETE_FAILED</code> state, a list of resource logical IDs
            that are associated with the resources you want to retain. During deletion, AWS CloudFormation
            deletes the stack but does not delete the retained resources.
            </para>
             
            <para>
            Retaining resources is useful when you cannot delete a resource, such as a non-empty
            S3 bucket, but you want to delete the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackRequest.RoleARN">
            <summary>
            Gets and sets the property RoleARN.
            <para>
            The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role
            that AWS CloudFormation assumes to delete the stack. AWS CloudFormation uses the role's
            credentials to make calls on your behalf.
            </para>
             
            <para>
            If you don't specify a value, AWS CloudFormation uses the role that was previously
            associated with the stack. If no role is available, AWS CloudFormation uses a temporary
            session that is generated from your user credentials.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteStackResponse">
            <summary>
            This is the response object from the DeleteStack operation.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteStackSetRequest">
            <summary>
            Container for the parameters to the DeleteStackSet operation.
            Deletes a stack set. Before you can delete a stack set, all of its member stack instances
            must be deleted. For more information about how to do this, see <a>DeleteStackInstances</a>.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DeleteStackSetRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you're deleting. You can obtain this value
            by running <a>ListStackSets</a>.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DeleteStackSetResponse">
            <summary>
            This is the response object from the DeleteStackSet operation.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeAccountLimitsRequest">
            <summary>
            Container for the parameters to the DescribeAccountLimits operation.
            Retrieves your account's AWS CloudFormation limits, such as the maximum number of
            stacks that you can create in your account.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeAccountLimitsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string that identifies the next page of limits that you want to retrieve.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeAccountLimitsResponse">
            <summary>
            The output for the <a>DescribeAccountLimits</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeAccountLimitsResponse.AccountLimits">
            <summary>
            Gets and sets the property AccountLimits.
            <para>
            An account limit structure that contain a list of AWS CloudFormation account limits
            and their values.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeAccountLimitsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 1 MB in size, a string that identifies the next page of limits.
            If no additional page exists, this value is null.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeChangeSetRequest">
            <summary>
            Container for the parameters to the DescribeChangeSet operation.
            Returns the inputs for the change set and a list of changes that AWS CloudFormation
            will make if you execute the change set. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html">Updating
            Stacks Using Change Sets</a> in the AWS CloudFormation User Guide.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetRequest.ChangeSetName">
            <summary>
            Gets and sets the property ChangeSetName.
            <para>
            The name or Amazon Resource Name (ARN) of the change set that you want to describe.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string (provided by the <a>DescribeChangeSet</a> response output) that identifies
            the next page of information that you want to retrieve.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            If you specified the name of a change set, specify the stack name or ID (ARN) of the
            change set you want to describe.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeChangeSetResponse">
            <summary>
            The output for the <a>DescribeChangeSet</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            If you execute the change set, the list of capabilities that were explicitly acknowledged
            when the change set was created.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.Changes">
            <summary>
            Gets and sets the property Changes.
            <para>
            A list of <code>Change</code> structures that describes the resources AWS CloudFormation
            changes if you execute the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.ChangeSetId">
            <summary>
            Gets and sets the property ChangeSetId.
            <para>
            The ARN of the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.ChangeSetName">
            <summary>
            Gets and sets the property ChangeSetName.
            <para>
            The name of the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.CreationTime">
            <summary>
            Gets and sets the property CreationTime.
            <para>
            The start time when the change set was created, in UTC.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            Information about the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.ExecutionStatus">
            <summary>
            Gets and sets the property ExecutionStatus.
            <para>
            If the change set execution status is <code>AVAILABLE</code>, you can execute the
            change set. If you can’t execute the change set, the status indicates why. For example,
            a change set might be in an <code>UNAVAILABLE</code> state because AWS CloudFormation
            is still creating it or in an <code>OBSOLETE</code> state because the stack was already
            updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 1 MB, a string that identifies the next page of changes. If
            there is no additional page, this value is null.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.NotificationARNs">
            <summary>
            Gets and sets the property NotificationARNs.
            <para>
            The ARNs of the Amazon Simple Notification Service (Amazon SNS) topics that will be
            associated with the stack if you execute the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of <code>Parameter</code> structures that describes the input parameters and
            their values used to create the change set. For more information, see the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
            data type.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            The ARN of the stack that is associated with the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name of the stack that is associated with the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The current status of the change set, such as <code>CREATE_IN_PROGRESS</code>, <code>CREATE_COMPLETE</code>,
            or <code>FAILED</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.StatusReason">
            <summary>
            Gets and sets the property StatusReason.
            <para>
            A description of the change set's status. For example, if your attempt to create a
            change set failed, AWS CloudFormation shows the error message.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeChangeSetResponse.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            If you execute the change set, the tags that will be associated with the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackEventsRequest">
            <summary>
            Container for the parameters to the DescribeStackEvents operation.
            Returns all stack related events for a specified stack in reverse chronological order.
            For more information about a stack's event history, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/concept-stack.html">Stacks</a>
            in the AWS CloudFormation User Guide.
            
             <note>
            <para>
            You can list events for stacks that have failed to create or have been deleted by
            specifying the unique stack identifier (stack ID).
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string that identifies the next page of events that you want to retrieve.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack, which are not always
            interchangeable:
            </para>
             <ul> <li>
            <para>
            Running stacks: You can specify either the stack's name or its unique stack ID.
            </para>
             </li> <li>
            <para>
            Deleted stacks: You must specify the unique stack ID.
            </para>
             </li> </ul>
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackEventsResponse">
            <summary>
            The output for a <a>DescribeStackEvents</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 1 MB in size, a string that identifies the next page of events.
            If no additional page exists, this value is null.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsResponse.StackEvents">
            <summary>
            Gets and sets the property StackEvents.
            <para>
            A list of <code>StackEvents</code> structures.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackInstanceRequest">
            <summary>
            Container for the parameters to the DescribeStackInstance operation.
            Returns the stack instance that's associated with the specified stack set, AWS account,
            and region.
            
             
            <para>
            For a list of stack instances that are associated with a specific stack set, use <a>ListStackInstances</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackInstanceRequest.StackInstanceAccount">
            <summary>
            Gets and sets the property StackInstanceAccount.
            <para>
            The ID of an AWS account that's associated with this stack instance.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackInstanceRequest.StackInstanceRegion">
            <summary>
            Gets and sets the property StackInstanceRegion.
            <para>
            The name of a region that's associated with this stack instance.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackInstanceRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or the unique stack ID of the stack set that you want to get stack instance
            information for.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackInstanceResponse">
            <summary>
            This is the response object from the DescribeStackInstance operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackInstanceResponse.StackInstance">
            <summary>
            Gets and sets the property StackInstance.
            <para>
            The stack instance that matches the specified request parameters.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackResourceRequest">
            <summary>
            Container for the parameters to the DescribeStackResource operation.
            Returns a description of the specified resource in the specified stack.
            
             
            <para>
            For deleted stacks, DescribeStackResource returns resource information for up to 90
            days after the stack has been deleted.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackResourceRequest.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The logical name of the resource as specified in the template.
            </para>
             
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackResourceRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack, which are not always
            interchangeable:
            </para>
             <ul> <li>
            <para>
            Running stacks: You can specify either the stack's name or its unique stack ID.
            </para>
             </li> <li>
            <para>
            Deleted stacks: You must specify the unique stack ID.
            </para>
             </li> </ul>
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackResourceResponse">
            <summary>
            The output for a <a>DescribeStackResource</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackResourceResponse.StackResourceDetail">
            <summary>
            Gets and sets the property StackResourceDetail.
            <para>
            A <code>StackResourceDetail</code> structure containing the description of the specified
            resource in the specified stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackResourcesRequest">
            <summary>
            Container for the parameters to the DescribeStackResources operation.
            Returns AWS resource descriptions for running and deleted stacks. If <code>StackName</code>
            is specified, all the associated resources that are part of the stack are returned.
            If <code>PhysicalResourceId</code> is specified, the associated resources of the stack
            that the resource belongs to are returned.
            
             <note>
            <para>
            Only the first 100 resources will be returned. If your stack has more resources than
            this, you should use <code>ListStackResources</code> instead.
            </para>
             </note>
            <para>
            For deleted stacks, <code>DescribeStackResources</code> returns resource information
            for up to 90 days after the stack has been deleted.
            </para>
             
            <para>
            You must specify either <code>StackName</code> or <code>PhysicalResourceId</code>,
            but not both. In addition, you can specify <code>LogicalResourceId</code> to filter
            the returned result. For more information about resources, the <code>LogicalResourceId</code>
            and <code>PhysicalResourceId</code>, go to the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/">AWS
            CloudFormation User Guide</a>.
            </para>
             <note>
            <para>
            A <code>ValidationError</code> is returned if you specify both <code>StackName</code>
            and <code>PhysicalResourceId</code> in the same request.
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The logical name of the resource as specified in the template.
            </para>
             
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.PhysicalResourceId">
            <summary>
            Gets and sets the property PhysicalResourceId.
            <para>
            The name or unique identifier that corresponds to a physical instance ID of a resource
            supported by AWS CloudFormation.
            </para>
             
            <para>
            For example, for an Amazon Elastic Compute Cloud (EC2) instance, <code>PhysicalResourceId</code>
            corresponds to the <code>InstanceId</code>. You can pass the EC2 <code>InstanceId</code>
            to <code>DescribeStackResources</code> to find which stack the instance belongs to
            and what other resources are part of the stack.
            </para>
             
            <para>
            Required: Conditional. If you do not specify <code>PhysicalResourceId</code>, you
            must specify <code>StackName</code>.
            </para>
             
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack, which are not always
            interchangeable:
            </para>
             <ul> <li>
            <para>
            Running stacks: You can specify either the stack's name or its unique stack ID.
            </para>
             </li> <li>
            <para>
            Deleted stacks: You must specify the unique stack ID.
            </para>
             </li> </ul>
            <para>
            Default: There is no default value.
            </para>
             
            <para>
            Required: Conditional. If you do not specify <code>StackName</code>, you must specify
            <code>PhysicalResourceId</code>.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackResourcesResponse">
            <summary>
            The output for a <a>DescribeStackResources</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesResponse.StackResources">
            <summary>
            Gets and sets the property StackResources.
            <para>
            A list of <code>StackResource</code> structures.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackSetOperationRequest">
            <summary>
            Container for the parameters to the DescribeStackSetOperation operation.
            Returns the description of the specified stack set operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackSetOperationRequest.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique ID of the stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackSetOperationRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or the unique stack ID of the stack set for the stack operation.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackSetOperationResponse">
            <summary>
            This is the response object from the DescribeStackSetOperation operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackSetOperationResponse.StackSetOperation">
            <summary>
            Gets and sets the property StackSetOperation.
            <para>
            The specified stack set operation.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackSetRequest">
            <summary>
            Container for the parameters to the DescribeStackSet operation.
            Returns the description of the specified stack set.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackSetRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set whose description you want.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStackSetResponse">
            <summary>
            This is the response object from the DescribeStackSet operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStackSetResponse.StackSet">
            <summary>
            Gets and sets the property StackSet.
            <para>
            The specified stack set.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStacksRequest">
            <summary>
            Container for the parameters to the DescribeStacks operation.
            Returns the description for the specified stack; if no stack name was specified, then
            it returns the description for all the stacks created.
            
             <note>
            <para>
            If the stack does not exist, an <code>AmazonCloudFormationException</code> is returned.
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStacksRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string that identifies the next page of stacks that you want to retrieve.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStacksRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack, which are not always
            interchangeable:
            </para>
             <ul> <li>
            <para>
            Running stacks: You can specify either the stack's name or its unique stack ID.
            </para>
             </li> <li>
            <para>
            Deleted stacks: You must specify the unique stack ID.
            </para>
             </li> </ul>
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.DescribeStacksResponse">
            <summary>
            The output for a <a>DescribeStacks</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStacksResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 1 MB in size, a string that identifies the next page of stacks.
            If no additional page exists, this value is null.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.DescribeStacksResponse.Stacks">
            <summary>
            Gets and sets the property Stacks.
            <para>
            A list of stack structures.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.EstimateTemplateCostRequest">
            <summary>
            Container for the parameters to the EstimateTemplateCost operation.
            Returns the estimated monthly cost of a template. The return value is an AWS Simple
            Monthly Calculator URL with a query string that describes the resources required to
            run the template.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.EstimateTemplateCostRequest.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of <code>Parameter</code> structures that specify input parameters.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.EstimateTemplateCostRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            Structure containing the template body with a minimum length of 1 byte and a maximum
            length of 51,200 bytes. (For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.)
            </para>
             
            <para>
            Conditional: You must pass <code>TemplateBody</code> or <code>TemplateURL</code>.
            If both are passed, only <code>TemplateBody</code> is used.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.EstimateTemplateCostRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            Location of file containing the template body. The URL must point to a template that
            is located in an Amazon S3 bucket. For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>.
            If both are passed, only <code>TemplateBody</code> is used.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.EstimateTemplateCostResponse">
            <summary>
            The output for a <a>EstimateTemplateCost</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.EstimateTemplateCostResponse.Url">
            <summary>
            Gets and sets the property Url.
            <para>
            An AWS Simple Monthly Calculator URL with a query string that describes the resources
            required to run the template.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ExecuteChangeSetRequest">
            <summary>
            Container for the parameters to the ExecuteChangeSet operation.
            Updates a stack using the input information that was provided when the specified change
            set was created. After the call successfully completes, AWS CloudFormation starts
            updating the stack. Use the <a>DescribeStacks</a> action to view the status of the
            update.
            
             
            <para>
            When you execute a change set, AWS CloudFormation deletes all other change sets associated
            with the stack because they aren't valid for the updated stack.
            </para>
             
            <para>
            If a stack policy is associated with the stack, AWS CloudFormation enforces the policy
            during the update. You can't specify a temporary stack policy that overrides the current
            policy.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ExecuteChangeSetRequest.ChangeSetName">
            <summary>
            Gets and sets the property ChangeSetName.
            <para>
            The name or ARN of the change set that you want use to update the specified stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ExecuteChangeSetRequest.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            A unique identifier for this <code>ExecuteChangeSet</code> request. Specify this token
            if you plan to retry requests so that AWS CloudFormation knows that you're not attempting
            to execute a change set to update a stack with the same name. You might retry <code>ExecuteChangeSet</code>
            requests to ensure that AWS CloudFormation successfully received them.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ExecuteChangeSetRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            If you specified the name of a change set, specify the stack name or ID (ARN) that
            is associated with the change set you want to execute.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ExecuteChangeSetResponse">
            <summary>
            The output for the <a>ExecuteChangeSet</a> action.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Export">
            <summary>
            The <code>Export</code> structure describes the exported output values for a stack.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Export.ExportingStackId">
            <summary>
            Gets and sets the property ExportingStackId.
            <para>
            The stack that contains the exported output name and value.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Export.Name">
            <summary>
            Gets and sets the property Name.
            <para>
            The name of exported output value. Use this name and the <code>Fn::ImportValue</code>
            function to import the associated value into other stacks. The name is defined in
            the <code>Export</code> field in the associated stack's <code>Outputs</code> section.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Export.Value">
            <summary>
            Gets and sets the property Value.
            <para>
            The value of the exported output, such as a resource physical ID. This value is defined
            in the <code>Export</code> field in the associated stack's <code>Outputs</code> section.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.GetStackPolicyRequest">
            <summary>
            Container for the parameters to the GetStackPolicy operation.
            Returns the stack policy for a specified stack. If a stack doesn't have a policy,
            a null value is returned.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetStackPolicyRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or unique stack ID that is associated with the stack whose policy you want
            to get.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.GetStackPolicyResponse">
            <summary>
            The output for the <a>GetStackPolicy</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetStackPolicyResponse.StackPolicyBody">
            <summary>
            Gets and sets the property StackPolicyBody.
            <para>
            Structure containing the stack policy body. (For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html">
            Prevent Updates to Stack Resources</a> in the AWS CloudFormation User Guide.)
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.GetTemplateRequest">
            <summary>
            Container for the parameters to the GetTemplate operation.
            Returns the template body for a specified stack. You can get the template for running
            or deleted stacks.
            
             
            <para>
            For deleted stacks, GetTemplate returns the template for up to 90 days after the stack
            has been deleted.
            </para>
             <note>
            <para>
             If the template does not exist, a <code>ValidationError</code> is returned.
            </para>
             </note>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateRequest.ChangeSetName">
            <summary>
            Gets and sets the property ChangeSetName.
            <para>
            The name or Amazon Resource Name (ARN) of a change set for which AWS CloudFormation
            returns the associated template. If you specify a name, you must also specify the
            <code>StackName</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack, which are not always
            interchangeable:
            </para>
             <ul> <li>
            <para>
            Running stacks: You can specify either the stack's name or its unique stack ID.
            </para>
             </li> <li>
            <para>
            Deleted stacks: You must specify the unique stack ID.
            </para>
             </li> </ul>
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateRequest.TemplateStage">
            <summary>
            Gets and sets the property TemplateStage.
            <para>
            For templates that include transforms, the stage of the template that AWS CloudFormation
            returns. To get the user-submitted template, specify <code>Original</code>. To get
            the template after AWS CloudFormation has processed all transforms, specify <code>Processed</code>.
            
            </para>
             
            <para>
            If the template doesn't include transforms, <code>Original</code> and <code>Processed</code>
            return the same template. By default, AWS CloudFormation specifies <code>Original</code>.
            
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.GetTemplateResponse">
            <summary>
            The output for <a>GetTemplate</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateResponse.StagesAvailable">
            <summary>
            Gets and sets the property StagesAvailable.
            <para>
            The stage of the template that you can retrieve. For stacks, the <code>Original</code>
            and <code>Processed</code> templates are always available. For change sets, the <code>Original</code>
            template is always available. After AWS CloudFormation finishes creating the change
            set, the <code>Processed</code> template becomes available.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateResponse.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            Structure containing the template body. (For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.)
            </para>
             
            <para>
            AWS CloudFormation returns the same template that was used when the stack was created.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.GetTemplateSummaryRequest">
            <summary>
            Container for the parameters to the GetTemplateSummary operation.
            Returns information about a new or existing template. The <code>GetTemplateSummary</code>
            action is useful for viewing parameter information, such as default parameter values
            and parameter types, before you create or update a stack.
            
             
            <para>
            You can use the <code>GetTemplateSummary</code> action when you submit a template,
            or you can get template information for a running or deleted stack.
            </para>
             
            <para>
            For deleted stacks, <code>GetTemplateSummary</code> returns the template information
            for up to 90 days after the stack has been deleted. If the template does not exist,
            a <code>ValidationError</code> is returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the stack ID that is associated with the stack, which are not always interchangeable.
            For running stacks, you can specify either the stack's name or its unique stack ID.
            For deleted stack, you must specify the unique stack ID.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>StackName</code>,
            <code>TemplateBody</code>, or <code>TemplateURL</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set from which the stack was created.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            Structure containing the template body with a minimum length of 1 byte and a maximum
            length of 51,200 bytes. For more information about templates, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>StackName</code>,
            <code>TemplateBody</code>, or <code>TemplateURL</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            Location of file containing the template body. The URL must point to a template (max
            size: 460,800 bytes) that is located in an Amazon S3 bucket. For more information
            about templates, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>StackName</code>,
            <code>TemplateBody</code>, or <code>TemplateURL</code>.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.GetTemplateSummaryResponse">
            <summary>
            The output for the <a>GetTemplateSummary</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            The capabilities found within the template. If your template contains IAM resources,
            you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value for this parameter
            when you use the <a>CreateStack</a> or <a>UpdateStack</a> actions with your template;
            otherwise, those actions return an InsufficientCapabilities error.
            </para>
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.CapabilitiesReason">
            <summary>
            Gets and sets the property CapabilitiesReason.
            <para>
            The list of resources that generated the values in the <code>Capabilities</code> response
            element.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.DeclaredTransforms">
            <summary>
            Gets and sets the property DeclaredTransforms.
            <para>
            A list of the transforms that are declared in the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            The value that is defined in the <code>Description</code> property of the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.Metadata">
            <summary>
            Gets and sets the property Metadata.
            <para>
            The value that is defined for the <code>Metadata</code> property of the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of parameter declarations that describe various properties for each parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.ResourceTypes">
            <summary>
            Gets and sets the property ResourceTypes.
            <para>
            A list of all the template resource types that are defined in the template, such as
            <code>AWS::EC2::Instance</code>, <code>AWS::Dynamo::Table</code>, and <code>Custom::MyCustomInstance</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.GetTemplateSummaryResponse.Version">
            <summary>
            Gets and sets the property Version.
            <para>
            The AWS template format version, which identifies the capabilities of the template.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InsufficientCapabilitiesException.#ctor(System.String)">
            <summary>
            Constructs a new InsufficientCapabilitiesException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InsufficientCapabilitiesException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of InsufficientCapabilitiesException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InsufficientCapabilitiesException.#ctor(System.Exception)">
            <summary>
            Construct instance of InsufficientCapabilitiesException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InsufficientCapabilitiesException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of InsufficientCapabilitiesException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InsufficientCapabilitiesException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of InsufficientCapabilitiesException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InsufficientCapabilitiesException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the InsufficientCapabilitiesException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountGateResultUnmarshaller">
            <summary>
            Response Unmarshaller for AccountGateResult Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountGateResultUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountGateResultUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountGateResultUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountLimitUnmarshaller">
            <summary>
            Response Unmarshaller for AccountLimit Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountLimitUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountLimitUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.AccountLimitUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CancelUpdateStackRequestMarshaller">
            <summary>
            CancelUpdateStack Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CancelUpdateStackRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CancelUpdateStackRequestMarshaller.Marshall(Amazon.CloudFormation.Model.CancelUpdateStackRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CancelUpdateStackResponseUnmarshaller">
            <summary>
            Response Unmarshaller for CancelUpdateStack operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CancelUpdateStackResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CancelUpdateStackResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CancelUpdateStackResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeSetSummaryUnmarshaller">
            <summary>
            Response Unmarshaller for ChangeSetSummary Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeSetSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeSetSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeSetSummaryUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeUnmarshaller">
            <summary>
            Response Unmarshaller for Change Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ChangeUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ContinueUpdateRollbackRequestMarshaller">
            <summary>
            ContinueUpdateRollback Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ContinueUpdateRollbackRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ContinueUpdateRollbackRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ContinueUpdateRollbackResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ContinueUpdateRollback operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ContinueUpdateRollbackResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ContinueUpdateRollbackResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ContinueUpdateRollbackResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateChangeSetRequestMarshaller">
            <summary>
            CreateChangeSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateChangeSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateChangeSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.CreateChangeSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateChangeSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for CreateChangeSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateChangeSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateChangeSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateChangeSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackInstancesRequestMarshaller">
            <summary>
            CreateStackInstances Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackInstancesRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackInstancesRequestMarshaller.Marshall(Amazon.CloudFormation.Model.CreateStackInstancesRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackInstancesResponseUnmarshaller">
            <summary>
            Response Unmarshaller for CreateStackInstances operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackInstancesResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackInstancesResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackInstancesResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackRequestMarshaller">
            <summary>
            CreateStack Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackRequestMarshaller.Marshall(Amazon.CloudFormation.Model.CreateStackRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackResponseUnmarshaller">
            <summary>
            Response Unmarshaller for CreateStack operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackSetRequestMarshaller">
            <summary>
            CreateStackSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.CreateStackSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for CreateStackSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.CreateStackSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteChangeSetRequestMarshaller">
            <summary>
            DeleteChangeSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteChangeSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteChangeSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DeleteChangeSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteChangeSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DeleteChangeSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteChangeSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteChangeSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteChangeSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackInstancesRequestMarshaller">
            <summary>
            DeleteStackInstances Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackInstancesRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackInstancesRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DeleteStackInstancesRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackInstancesResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DeleteStackInstances operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackInstancesResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackInstancesResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackInstancesResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackRequestMarshaller">
            <summary>
            DeleteStack Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DeleteStackRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DeleteStack operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackSetRequestMarshaller">
            <summary>
            DeleteStackSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DeleteStackSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DeleteStackSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DeleteStackSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeAccountLimitsRequestMarshaller">
            <summary>
            DescribeAccountLimits Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeAccountLimitsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeAccountLimitsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeAccountLimitsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeAccountLimitsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeAccountLimits operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeAccountLimitsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeAccountLimitsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeAccountLimitsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeChangeSetRequestMarshaller">
            <summary>
            DescribeChangeSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeChangeSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeChangeSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeChangeSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeChangeSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeChangeSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeChangeSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeChangeSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeChangeSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackEventsRequestMarshaller">
            <summary>
            DescribeStackEvents Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackEventsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackEventsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeStackEventsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackEventsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeStackEvents operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackEventsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackEventsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackEventsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackInstanceRequestMarshaller">
            <summary>
            DescribeStackInstance Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackInstanceRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackInstanceRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeStackInstanceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackInstanceResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeStackInstance operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackInstanceResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackInstanceResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackInstanceResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourceRequestMarshaller">
            <summary>
            DescribeStackResource Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourceRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourceRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeStackResourceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourceResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeStackResource operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourceResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourceResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourceResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourcesRequestMarshaller">
            <summary>
            DescribeStackResources Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourcesRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourcesRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeStackResourcesRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourcesResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeStackResources operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourcesResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourcesResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackResourcesResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetOperationRequestMarshaller">
            <summary>
            DescribeStackSetOperation Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetOperationRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetOperationRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeStackSetOperationRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetOperationResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeStackSetOperation operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetOperationResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetOperationResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetOperationResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetRequestMarshaller">
            <summary>
            DescribeStackSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeStackSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeStackSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStackSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStacksRequestMarshaller">
            <summary>
            DescribeStacks Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStacksRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStacksRequestMarshaller.Marshall(Amazon.CloudFormation.Model.DescribeStacksRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStacksResponseUnmarshaller">
            <summary>
            Response Unmarshaller for DescribeStacks operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStacksResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStacksResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.DescribeStacksResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.EstimateTemplateCostRequestMarshaller">
            <summary>
            EstimateTemplateCost Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.EstimateTemplateCostRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.EstimateTemplateCostRequestMarshaller.Marshall(Amazon.CloudFormation.Model.EstimateTemplateCostRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.EstimateTemplateCostResponseUnmarshaller">
            <summary>
            Response Unmarshaller for EstimateTemplateCost operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.EstimateTemplateCostResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.EstimateTemplateCostResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.EstimateTemplateCostResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExecuteChangeSetRequestMarshaller">
            <summary>
            ExecuteChangeSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExecuteChangeSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExecuteChangeSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ExecuteChangeSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExecuteChangeSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ExecuteChangeSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExecuteChangeSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExecuteChangeSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExecuteChangeSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExportUnmarshaller">
            <summary>
            Response Unmarshaller for Export Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExportUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExportUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ExportUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetStackPolicyRequestMarshaller">
            <summary>
            GetStackPolicy Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetStackPolicyRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetStackPolicyRequestMarshaller.Marshall(Amazon.CloudFormation.Model.GetStackPolicyRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetStackPolicyResponseUnmarshaller">
            <summary>
            Response Unmarshaller for GetStackPolicy operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetStackPolicyResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetStackPolicyResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetStackPolicyResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateRequestMarshaller">
            <summary>
            GetTemplate Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateRequestMarshaller.Marshall(Amazon.CloudFormation.Model.GetTemplateRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateResponseUnmarshaller">
            <summary>
            Response Unmarshaller for GetTemplate operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateSummaryRequestMarshaller">
            <summary>
            GetTemplateSummary Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateSummaryRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateSummaryRequestMarshaller.Marshall(Amazon.CloudFormation.Model.GetTemplateSummaryRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateSummaryResponseUnmarshaller">
            <summary>
            Response Unmarshaller for GetTemplateSummary operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateSummaryResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateSummaryResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.GetTemplateSummaryResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListChangeSetsRequestMarshaller">
            <summary>
            ListChangeSets Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListChangeSetsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListChangeSetsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListChangeSetsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListChangeSetsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListChangeSets operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListChangeSetsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListChangeSetsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListChangeSetsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListExportsRequestMarshaller">
            <summary>
            ListExports Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListExportsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListExportsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListExportsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListExportsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListExports operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListExportsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListExportsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListExportsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListImportsRequestMarshaller">
            <summary>
            ListImports Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListImportsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListImportsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListImportsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListImportsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListImports operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListImportsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListImportsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListImportsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackInstancesRequestMarshaller">
            <summary>
            ListStackInstances Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackInstancesRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackInstancesRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListStackInstancesRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackInstancesResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListStackInstances operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackInstancesResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackInstancesResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackInstancesResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackResourcesRequestMarshaller">
            <summary>
            ListStackResources Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackResourcesRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackResourcesRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListStackResourcesRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackResourcesResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListStackResources operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackResourcesResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackResourcesResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackResourcesResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationResultsRequestMarshaller">
            <summary>
            ListStackSetOperationResults Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationResultsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationResultsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationResultsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListStackSetOperationResults operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationResultsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationResultsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationResultsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationsRequestMarshaller">
            <summary>
            ListStackSetOperations Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListStackSetOperationsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListStackSetOperations operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetOperationsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetsRequestMarshaller">
            <summary>
            ListStackSets Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetsRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetsRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListStackSetsRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetsResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListStackSets operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetsResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetsResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStackSetsResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStacksRequestMarshaller">
            <summary>
            ListStacks Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStacksRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStacksRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ListStacksRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStacksResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ListStacks operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStacksResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStacksResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ListStacksResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.OutputUnmarshaller">
            <summary>
            Response Unmarshaller for Output Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.OutputUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.OutputUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.OutputUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterConstraintsUnmarshaller">
            <summary>
            Response Unmarshaller for ParameterConstraints Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterConstraintsUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterConstraintsUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterConstraintsUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterDeclarationUnmarshaller">
            <summary>
            Response Unmarshaller for ParameterDeclaration Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterDeclarationUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterDeclarationUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterDeclarationUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterUnmarshaller">
            <summary>
            Response Unmarshaller for Parameter Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ParameterUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeDetailUnmarshaller">
            <summary>
            Response Unmarshaller for ResourceChangeDetail Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeDetailUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeDetailUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeDetailUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeUnmarshaller">
            <summary>
            Response Unmarshaller for ResourceChange Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceChangeUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceTargetDefinitionUnmarshaller">
            <summary>
            Response Unmarshaller for ResourceTargetDefinition Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceTargetDefinitionUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceTargetDefinitionUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ResourceTargetDefinitionUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SetStackPolicyRequestMarshaller">
            <summary>
            SetStackPolicy Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SetStackPolicyRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SetStackPolicyRequestMarshaller.Marshall(Amazon.CloudFormation.Model.SetStackPolicyRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SetStackPolicyResponseUnmarshaller">
            <summary>
            Response Unmarshaller for SetStackPolicy operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SetStackPolicyResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SetStackPolicyResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SetStackPolicyResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SignalResourceRequestMarshaller">
            <summary>
            SignalResource Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SignalResourceRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SignalResourceRequestMarshaller.Marshall(Amazon.CloudFormation.Model.SignalResourceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SignalResourceResponseUnmarshaller">
            <summary>
            Response Unmarshaller for SignalResource operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SignalResourceResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SignalResourceResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.SignalResourceResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackEventUnmarshaller">
            <summary>
            Response Unmarshaller for StackEvent Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackEventUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackEventUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackEventUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceSummaryUnmarshaller">
            <summary>
            Response Unmarshaller for StackInstanceSummary Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceSummaryUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceUnmarshaller">
            <summary>
            Response Unmarshaller for StackInstance Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackInstanceUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceDetailUnmarshaller">
            <summary>
            Response Unmarshaller for StackResourceDetail Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceDetailUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceDetailUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceDetailUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceSummaryUnmarshaller">
            <summary>
            Response Unmarshaller for StackResourceSummary Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceSummaryUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceUnmarshaller">
            <summary>
            Response Unmarshaller for StackResource Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackResourceUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationPreferencesUnmarshaller">
            <summary>
            Response Unmarshaller for StackSetOperationPreferences Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationPreferencesUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationPreferencesUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationPreferencesUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationResultSummaryUnmarshaller">
            <summary>
            Response Unmarshaller for StackSetOperationResultSummary Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationResultSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationResultSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationResultSummaryUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationSummaryUnmarshaller">
            <summary>
            Response Unmarshaller for StackSetOperationSummary Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationSummaryUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationUnmarshaller">
            <summary>
            Response Unmarshaller for StackSetOperation Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetOperationUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetSummaryUnmarshaller">
            <summary>
            Response Unmarshaller for StackSetSummary Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetSummaryUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetUnmarshaller">
            <summary>
            Response Unmarshaller for StackSet Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSetUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSummaryUnmarshaller">
            <summary>
            Response Unmarshaller for StackSummary Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSummaryUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackSummaryUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackUnmarshaller">
            <summary>
            Response Unmarshaller for Stack Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StackUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StopStackSetOperationRequestMarshaller">
            <summary>
            StopStackSetOperation Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StopStackSetOperationRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StopStackSetOperationRequestMarshaller.Marshall(Amazon.CloudFormation.Model.StopStackSetOperationRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StopStackSetOperationResponseUnmarshaller">
            <summary>
            Response Unmarshaller for StopStackSetOperation operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StopStackSetOperationResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StopStackSetOperationResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.StopStackSetOperationResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TagUnmarshaller">
            <summary>
            Response Unmarshaller for Tag Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TagUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TagUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TagUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TemplateParameterUnmarshaller">
            <summary>
            Response Unmarshaller for TemplateParameter Object
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TemplateParameterUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TemplateParameterUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.TemplateParameterUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackRequestMarshaller">
            <summary>
            UpdateStack Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackRequestMarshaller.Marshall(Amazon.CloudFormation.Model.UpdateStackRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackResponseUnmarshaller">
            <summary>
            Response Unmarshaller for UpdateStack operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackSetRequestMarshaller">
            <summary>
            UpdateStackSet Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackSetRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackSetRequestMarshaller.Marshall(Amazon.CloudFormation.Model.UpdateStackSetRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackSetResponseUnmarshaller">
            <summary>
            Response Unmarshaller for UpdateStackSet operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackSetResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackSetResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.UpdateStackSetResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ValidateTemplateRequestMarshaller">
            <summary>
            ValidateTemplate Request Marshaller
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ValidateTemplateRequestMarshaller.Marshall(Amazon.Runtime.AmazonWebServiceRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="input"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ValidateTemplateRequestMarshaller.Marshall(Amazon.CloudFormation.Model.ValidateTemplateRequest)">
            <summary>
            Marshaller the request object to the HTTP request.
            </summary>
            <param name="publicRequest"></param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ValidateTemplateResponseUnmarshaller">
            <summary>
            Response Unmarshaller for ValidateTemplate operation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ValidateTemplateResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext)">
            <summary>
            Unmarshaller the response from the service to the response class.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ValidateTemplateResponseUnmarshaller.UnmarshallException(Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext,System.Exception,System.Net.HttpStatusCode)">
            <summary>
            Unmarshaller error response to exception.
            </summary>
            <param name="context"></param>
            <param name="innerException"></param>
            <param name="statusCode"></param>
            <returns></returns>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Internal.MarshallTransformations.ValidateTemplateResponseUnmarshaller.Instance">
            <summary>
            Gets the singleton.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.InvalidChangeSetStatusException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidChangeSetStatusException.#ctor(System.String)">
            <summary>
            Constructs a new InvalidChangeSetStatusException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidChangeSetStatusException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of InvalidChangeSetStatusException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidChangeSetStatusException.#ctor(System.Exception)">
            <summary>
            Construct instance of InvalidChangeSetStatusException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidChangeSetStatusException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of InvalidChangeSetStatusException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidChangeSetStatusException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of InvalidChangeSetStatusException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidChangeSetStatusException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the InvalidChangeSetStatusException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.InvalidOperationException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidOperationException.#ctor(System.String)">
            <summary>
            Constructs a new InvalidOperationException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidOperationException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of InvalidOperationException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidOperationException.#ctor(System.Exception)">
            <summary>
            Construct instance of InvalidOperationException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidOperationException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of InvalidOperationException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidOperationException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of InvalidOperationException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.InvalidOperationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the InvalidOperationException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.LimitExceededException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.LimitExceededException.#ctor(System.String)">
            <summary>
            Constructs a new LimitExceededException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.LimitExceededException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of LimitExceededException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.LimitExceededException.#ctor(System.Exception)">
            <summary>
            Construct instance of LimitExceededException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.LimitExceededException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of LimitExceededException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.LimitExceededException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of LimitExceededException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.LimitExceededException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the LimitExceededException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListChangeSetsRequest">
            <summary>
            Container for the parameters to the ListChangeSets operation.
            Returns the ID and status of each active change set for a stack. For example, AWS
            CloudFormation lists change sets that are in the <code>CREATE_IN_PROGRESS</code> or
            <code>CREATE_PENDING</code> state.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListChangeSetsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string (provided by the <a>ListChangeSets</a> response output) that identifies the
            next page of change sets that you want to retrieve.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListChangeSetsRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the Amazon Resource Name (ARN) of the stack for which you want to list
            change sets.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListChangeSetsResponse">
            <summary>
            The output for the <a>ListChangeSets</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListChangeSetsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 1 MB, a string that identifies the next page of change sets.
            If there is no additional page, this value is null.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListChangeSetsResponse.Summaries">
            <summary>
            Gets and sets the property Summaries.
            <para>
            A list of <code>ChangeSetSummary</code> structures that provides the ID and status
            of each change set for the specified stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListExportsRequest">
            <summary>
            Container for the parameters to the ListExports operation.
            Lists all exported output values in the account and region in which you call this
            action. Use this action to see the exported output values that you can import into
            other stacks. To import values, use the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html">
            <code>Fn::ImportValue</code> </a> function.
            
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html">
            AWS CloudFormation Export Stack Output Values</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListExportsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string (provided by the <a>ListExports</a> response output) that identifies the
            next page of exported output values that you asked to retrieve.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListExportsResponse">
            <summary>
            This is the response object from the ListExports operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListExportsResponse.Exports">
            <summary>
            Gets and sets the property Exports.
            <para>
            The output for the <a>ListExports</a> action.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListExportsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 100 exported output values, a string that identifies the next
            page of exports. If there is no additional page, this value is null.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListImportsRequest">
            <summary>
            Container for the parameters to the ListImports operation.
            Lists all stacks that are importing an exported output value. To modify or remove
            an exported output value, first use this action to see which stacks are using it.
            To see the exported output values in your account, see <a>ListExports</a>.
            
             
            <para>
            For more information about importing an exported output value, see the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html">
            <code>Fn::ImportValue</code> </a> function.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListImportsRequest.ExportName">
            <summary>
            Gets and sets the property ExportName.
            <para>
            The name of the exported output value. AWS CloudFormation returns the stack names
            that are importing this value.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListImportsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string (provided by the <a>ListImports</a> response output) that identifies the
            next page of stacks that are importing the specified exported output value.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListImportsResponse">
            <summary>
            This is the response object from the ListImports operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListImportsResponse.Imports">
            <summary>
            Gets and sets the property Imports.
            <para>
            A list of stack names that are importing the specified exported output value.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListImportsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string that identifies the next page of exports. If there is no additional page,
            this value is null.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackInstancesRequest">
            <summary>
            Container for the parameters to the ListStackInstances operation.
            Returns summary information about stack instances that are associated with the specified
            stack set. You can filter for stack instances that are associated with a specific
            AWS account name or region.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackInstancesRequest.MaxResults">
            <summary>
            Gets and sets the property MaxResults.
            <para>
            The maximum number of results to be returned with a single call. If the number of
            available results exceeds this maximum, the response includes a <code>NextToken</code>
            value that you can assign to the <code>NextToken</code> request parameter to get the
            next set of results.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackInstancesRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the previous request didn't return all of the remaining results, the response's
            <code>NextToken</code> parameter value is set to a token. To retrieve the next set
            of results, call <code>ListStackInstances</code> again and assign that token to the
            request object's <code>NextToken</code> parameter. If there are no remaining results,
            the previous response object's <code>NextToken</code> parameter is set to <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackInstancesRequest.StackInstanceAccount">
            <summary>
            Gets and sets the property StackInstanceAccount.
            <para>
            The name of the AWS account that you want to list stack instances for.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackInstancesRequest.StackInstanceRegion">
            <summary>
            Gets and sets the property StackInstanceRegion.
            <para>
            The name of the region where you want to list stack instances.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackInstancesRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you want to list stack instances for.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackInstancesResponse">
            <summary>
            This is the response object from the ListStackInstances operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackInstancesResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the request doesn't return all of the remaining results, <code>NextToken</code>
            is set to a token. To retrieve the next set of results, call <code>ListStackInstances</code>
            again and assign that token to the request object's <code>NextToken</code> parameter.
            If the request returns all results, <code>NextToken</code> is set to <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackInstancesResponse.Summaries">
            <summary>
            Gets and sets the property Summaries.
            <para>
            A list of <code>StackInstanceSummary</code> structures that contain information about
            the specified stack instances.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackResourcesRequest">
            <summary>
            Container for the parameters to the ListStackResources operation.
            Returns descriptions of all resources of the specified stack.
            
             
            <para>
            For deleted stacks, ListStackResources returns resource information for up to 90 days
            after the stack has been deleted.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackResourcesRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string that identifies the next page of stack resources that you want to retrieve.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackResourcesRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or the unique stack ID that is associated with the stack, which are not always
            interchangeable:
            </para>
             <ul> <li>
            <para>
            Running stacks: You can specify either the stack's name or its unique stack ID.
            </para>
             </li> <li>
            <para>
            Deleted stacks: You must specify the unique stack ID.
            </para>
             </li> </ul>
            <para>
            Default: There is no default value.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackResourcesResponse">
            <summary>
            The output for a <a>ListStackResources</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackResourcesResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 1 MB, a string that identifies the next page of stack resources.
            If no additional page exists, this value is null.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackResourcesResponse.StackResourceSummaries">
            <summary>
            Gets and sets the property StackResourceSummaries.
            <para>
            A list of <code>StackResourceSummary</code> structures.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest">
            <summary>
            Container for the parameters to the ListStackSetOperationResults operation.
            Returns summary information about the results of a stack set operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest.MaxResults">
            <summary>
            Gets and sets the property MaxResults.
            <para>
            The maximum number of results to be returned with a single call. If the number of
            available results exceeds this maximum, the response includes a <code>NextToken</code>
            value that you can assign to the <code>NextToken</code> request parameter to get the
            next set of results.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the previous request didn't return all of the remaining results, the response object's
            <code>NextToken</code> parameter value is set to a token. To retrieve the next set
            of results, call <code>ListStackSetOperationResults</code> again and assign that token
            to the request object's <code>NextToken</code> parameter. If there are no remaining
            results, the previous response object's <code>NextToken</code> parameter is set to
            <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The ID of the stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you want to get operation results for.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackSetOperationResultsResponse">
            <summary>
            This is the response object from the ListStackSetOperationResults operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationResultsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the request doesn't return all results, <code>NextToken</code> is set to a token.
            To retrieve the next set of results, call <code>ListOperationResults</code> again
            and assign that token to the request object's <code>NextToken</code> parameter. If
            there are no remaining results, <code>NextToken</code> is set to <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationResultsResponse.Summaries">
            <summary>
            Gets and sets the property Summaries.
            <para>
            A list of <code>StackSetOperationResultSummary</code> structures that contain information
            about the specified operation results, for accounts and regions that are included
            in the operation.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackSetOperationsRequest">
            <summary>
            Container for the parameters to the ListStackSetOperations operation.
            Returns summary information about operations performed on a stack set.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationsRequest.MaxResults">
            <summary>
            Gets and sets the property MaxResults.
            <para>
            The maximum number of results to be returned with a single call. If the number of
            available results exceeds this maximum, the response includes a <code>NextToken</code>
            value that you can assign to the <code>NextToken</code> request parameter to get the
            next set of results.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the previous paginated request didn't return all of the remaining results, the
            response object's <code>NextToken</code> parameter value is set to a token. To retrieve
            the next set of results, call <code>ListStackSetOperations</code> again and assign
            that token to the request object's <code>NextToken</code> parameter. If there are
            no remaining results, the previous response object's <code>NextToken</code> parameter
            is set to <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationsRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you want to get operation summaries for.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackSetOperationsResponse">
            <summary>
            This is the response object from the ListStackSetOperations operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the request doesn't return all results, <code>NextToken</code> is set to a token.
            To retrieve the next set of results, call <code>ListOperationResults</code> again
            and assign that token to the request object's <code>NextToken</code> parameter. If
            there are no remaining results, <code>NextToken</code> is set to <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetOperationsResponse.Summaries">
            <summary>
            Gets and sets the property Summaries.
            <para>
            A list of <code>StackSetOperationSummary</code> structures that contain summary information
            about operations for the specified stack set.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackSetsRequest">
            <summary>
            Container for the parameters to the ListStackSets operation.
            Returns summary information about stack sets that are associated with the user.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetsRequest.MaxResults">
            <summary>
            Gets and sets the property MaxResults.
            <para>
            The maximum number of results to be returned with a single call. If the number of
            available results exceeds this maximum, the response includes a <code>NextToken</code>
            value that you can assign to the <code>NextToken</code> request parameter to get the
            next set of results.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetsRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the previous paginated request didn't return all of the remaining results, the
            response object's <code>NextToken</code> parameter value is set to a token. To retrieve
            the next set of results, call <code>ListStackSets</code> again and assign that token
            to the request object's <code>NextToken</code> parameter. If there are no remaining
            results, the previous response object's <code>NextToken</code> parameter is set to
            <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetsRequest.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the stack sets that you want to get summary information about.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStackSetsResponse">
            <summary>
            This is the response object from the ListStackSets operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetsResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the request doesn't return all of the remaining results, <code>NextToken</code>
            is set to a token. To retrieve the next set of results, call <code>ListStackInstances</code>
            again and assign that token to the request object's <code>NextToken</code> parameter.
            If the request returns all results, <code>NextToken</code> is set to <code>null</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStackSetsResponse.Summaries">
            <summary>
            Gets and sets the property Summaries.
            <para>
            A list of <code>StackSetSummary</code> structures that contain information about the
            user's stack sets.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStacksRequest">
            <summary>
            Container for the parameters to the ListStacks operation.
            Returns the summary information for stacks whose status matches the specified StackStatusFilter.
            Summary information for stacks that have been deleted is kept for 90 days after the
            stack is deleted. If no StackStatusFilter is specified, summary information for all
            stacks is returned (including existing stacks and stacks that have been deleted).
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStacksRequest.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            A string that identifies the next page of stacks that you want to retrieve.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStacksRequest.StackStatusFilter">
            <summary>
            Gets and sets the property StackStatusFilter.
            <para>
            Stack status to use as a filter. Specify one or more stack status codes to list only
            stacks with the specified status codes. For a complete list of stack status codes,
            see the <code>StackStatus</code> parameter of the <a>Stack</a> data type.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ListStacksResponse">
            <summary>
            The output for <a>ListStacks</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStacksResponse.NextToken">
            <summary>
            Gets and sets the property NextToken.
            <para>
            If the output exceeds 1 MB in size, a string that identifies the next page of stacks.
            If no additional page exists, this value is null.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ListStacksResponse.StackSummaries">
            <summary>
            Gets and sets the property StackSummaries.
            <para>
            A list of <code>StackSummary</code> structures containing information about the specified
            stacks.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.NameAlreadyExistsException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.NameAlreadyExistsException.#ctor(System.String)">
            <summary>
            Constructs a new NameAlreadyExistsException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.NameAlreadyExistsException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of NameAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.NameAlreadyExistsException.#ctor(System.Exception)">
            <summary>
            Construct instance of NameAlreadyExistsException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.NameAlreadyExistsException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of NameAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.NameAlreadyExistsException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of NameAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.NameAlreadyExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the NameAlreadyExistsException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException.#ctor(System.String)">
            <summary>
            Constructs a new OperationIdAlreadyExistsException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of OperationIdAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException.#ctor(System.Exception)">
            <summary>
            Construct instance of OperationIdAlreadyExistsException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of OperationIdAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of OperationIdAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the OperationIdAlreadyExistsException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.OperationInProgressException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationInProgressException.#ctor(System.String)">
            <summary>
            Constructs a new OperationInProgressException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationInProgressException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of OperationInProgressException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationInProgressException.#ctor(System.Exception)">
            <summary>
            Construct instance of OperationInProgressException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationInProgressException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of OperationInProgressException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationInProgressException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of OperationInProgressException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationInProgressException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the OperationInProgressException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.OperationNotFoundException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationNotFoundException.#ctor(System.String)">
            <summary>
            Constructs a new OperationNotFoundException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationNotFoundException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of OperationNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationNotFoundException.#ctor(System.Exception)">
            <summary>
            Construct instance of OperationNotFoundException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationNotFoundException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of OperationNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationNotFoundException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of OperationNotFoundException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.OperationNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the OperationNotFoundException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Output">
            <summary>
            The Output data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Output.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            User defined description associated with the output.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Output.ExportName">
            <summary>
            Gets and sets the property ExportName.
            <para>
            The name of the export associated with the output.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Output.OutputKey">
            <summary>
            Gets and sets the property OutputKey.
            <para>
            The key associated with the output.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Output.OutputValue">
            <summary>
            Gets and sets the property OutputValue.
            <para>
            The value associated with the output.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Parameter">
            <summary>
            The Parameter data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Parameter.ParameterKey">
            <summary>
            Gets and sets the property ParameterKey.
            <para>
            The key associated with the parameter. If you don't specify a key and value for a
            particular parameter, AWS CloudFormation uses the default value that is specified
            in your template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Parameter.ParameterValue">
            <summary>
            Gets and sets the property ParameterValue.
            <para>
            The value associated with the parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Parameter.UsePreviousValue">
            <summary>
            Gets and sets the property UsePreviousValue.
            <para>
            During a stack update, use the existing parameter value that the stack is using for
            a given parameter key. If you specify <code>true</code>, do not specify a parameter
            value.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ParameterConstraints">
            <summary>
            A set of criteria that AWS CloudFormation uses to validate parameter values. Although
            other constraints might be defined in the stack template, AWS CloudFormation returns
            only the <code>AllowedValues</code> property.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ParameterConstraints.AllowedValues">
            <summary>
            Gets and sets the property AllowedValues.
            <para>
            A list of values that are permitted for a parameter.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ParameterDeclaration">
            <summary>
            The ParameterDeclaration data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ParameterDeclaration.DefaultValue">
            <summary>
            Gets and sets the property DefaultValue.
            <para>
            The default value of the parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ParameterDeclaration.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            The description that is associate with the parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ParameterDeclaration.NoEcho">
            <summary>
            Gets and sets the property NoEcho.
            <para>
            Flag that indicates whether the parameter value is shown as plain text in logs and
            in the AWS Management Console.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ParameterDeclaration.ParameterConstraints">
            <summary>
            Gets and sets the property ParameterConstraints.
            <para>
            The criteria that AWS CloudFormation uses to validate parameter values.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ParameterDeclaration.ParameterKey">
            <summary>
            Gets and sets the property ParameterKey.
            <para>
            The name that is associated with the parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ParameterDeclaration.ParameterType">
            <summary>
            Gets and sets the property ParameterType.
            <para>
            The type of parameter.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ResourceChange">
            <summary>
            The <code>ResourceChange</code> structure describes the resource and the action that
            AWS CloudFormation will perform on it if you execute this change set.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChange.Action">
            <summary>
            Gets and sets the property Action.
            <para>
            The action that AWS CloudFormation takes on the resource, such as <code>Add</code>
            (adds a new resource), <code>Modify</code> (changes a resource), or <code>Remove</code>
            (deletes a resource).
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChange.Details">
            <summary>
            Gets and sets the property Details.
            <para>
            For the <code>Modify</code> action, a list of <code>ResourceChangeDetail</code> structures
            that describes the changes that AWS CloudFormation will make to the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChange.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The resource's logical ID, which is defined in the stack's template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChange.PhysicalResourceId">
            <summary>
            Gets and sets the property PhysicalResourceId.
            <para>
            The resource's physical ID (resource name). Resources that you are adding don't have
            physical IDs because they haven't been created.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChange.Replacement">
            <summary>
            Gets and sets the property Replacement.
            <para>
            For the <code>Modify</code> action, indicates whether AWS CloudFormation will replace
            the resource by creating a new one and deleting the old one. This value depends on
            the value of the <code>RequiresRecreation</code> property in the <code>ResourceTargetDefinition</code>
            structure. For example, if the <code>RequiresRecreation</code> field is <code>Always</code>
            and the <code>Evaluation</code> field is <code>Static</code>, <code>Replacement</code>
            is <code>True</code>. If the <code>RequiresRecreation</code> field is <code>Always</code>
            and the <code>Evaluation</code> field is <code>Dynamic</code>, <code>Replacement</code>
            is <code>Conditionally</code>.
            </para>
             
            <para>
            If you have multiple changes with different <code>RequiresRecreation</code> values,
            the <code>Replacement</code> value depends on the change with the most impact. A <code>RequiresRecreation</code>
            value of <code>Always</code> has the most impact, followed by <code>Conditionally</code>,
            and then <code>Never</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChange.ResourceType">
            <summary>
            Gets and sets the property ResourceType.
            <para>
            The type of AWS CloudFormation resource, such as <code>AWS::S3::Bucket</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChange.Scope">
            <summary>
            Gets and sets the property Scope.
            <para>
            For the <code>Modify</code> action, indicates which resource attribute is triggering
            this update, such as a change in the resource attribute's <code>Metadata</code>, <code>Properties</code>,
            or <code>Tags</code>.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ResourceChangeDetail">
            <summary>
            For a resource with <code>Modify</code> as the action, the <code>ResourceChange</code>
            structure describes the changes AWS CloudFormation will make to that resource.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChangeDetail.CausingEntity">
            <summary>
            Gets and sets the property CausingEntity.
            <para>
            The identity of the entity that triggered this change. This entity is a member of
            the group that is specified by the <code>ChangeSource</code> field. For example, if
            you modified the value of the <code>KeyPairName</code> parameter, the <code>CausingEntity</code>
            is the name of the parameter (<code>KeyPairName</code>).
            </para>
             
            <para>
            If the <code>ChangeSource</code> value is <code>DirectModification</code>, no value
            is given for <code>CausingEntity</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChangeDetail.ChangeSource">
            <summary>
            Gets and sets the property ChangeSource.
            <para>
            The group to which the <code>CausingEntity</code> value belongs. There are five entity
            groups:
            </para>
             <ul> <li>
            <para>
             <code>ResourceReference</code> entities are <code>Ref</code> intrinsic functions
            that refer to resources in the template, such as <code>{ "Ref" : "MyEC2InstanceResource"
            }</code>.
            </para>
             </li> <li>
            <para>
             <code>ParameterReference</code> entities are <code>Ref</code> intrinsic functions
            that get template parameter values, such as <code>{ "Ref" : "MyPasswordParameter"
            }</code>.
            </para>
             </li> <li>
            <para>
             <code>ResourceAttribute</code> entities are <code>Fn::GetAtt</code> intrinsic functions
            that get resource attribute values, such as <code>{ "Fn::GetAtt" : [ "MyEC2InstanceResource",
            "PublicDnsName" ] }</code>.
            </para>
             </li> <li>
            <para>
             <code>DirectModification</code> entities are changes that are made directly to the
            template.
            </para>
             </li> <li>
            <para>
             <code>Automatic</code> entities are <code>AWS::CloudFormation::Stack</code> resource
            types, which are also known as nested stacks. If you made no changes to the <code>AWS::CloudFormation::Stack</code>
            resource, AWS CloudFormation sets the <code>ChangeSource</code> to <code>Automatic</code>
            because the nested stack's template might have changed. Changes to a nested stack's
            template aren't visible to AWS CloudFormation until you run an update on the parent
            stack.
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChangeDetail.Evaluation">
            <summary>
            Gets and sets the property Evaluation.
            <para>
            Indicates whether AWS CloudFormation can determine the target value, and whether the
            target value will change before you execute a change set.
            </para>
             
            <para>
            For <code>Static</code> evaluations, AWS CloudFormation can determine that the target
            value will change, and its value. For example, if you directly modify the <code>InstanceType</code>
            property of an EC2 instance, AWS CloudFormation knows that this property value will
            change, and its value, so this is a <code>Static</code> evaluation.
            </para>
             
            <para>
            For <code>Dynamic</code> evaluations, cannot determine the target value because it
            depends on the result of an intrinsic function, such as a <code>Ref</code> or <code>Fn::GetAtt</code>
            intrinsic function, when the stack is updated. For example, if your template includes
            a reference to a resource that is conditionally recreated, the value of the reference
            (the physical ID of the resource) might change, depending on if the resource is recreated.
            If the resource is recreated, it will have a new physical ID, so all references to
            that resource will also be updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceChangeDetail.Target">
            <summary>
            Gets and sets the property Target.
            <para>
            A <code>ResourceTargetDefinition</code> structure that describes the field that AWS
            CloudFormation will change and whether the resource will be recreated.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ResourceTargetDefinition">
            <summary>
            The field that AWS CloudFormation will change, such as the name of a resource's property,
            and whether the resource will be recreated.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceTargetDefinition.Attribute">
            <summary>
            Gets and sets the property Attribute.
            <para>
            Indicates which resource attribute is triggering this update, such as a change in
            the resource attribute's <code>Metadata</code>, <code>Properties</code>, or <code>Tags</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceTargetDefinition.Name">
            <summary>
            Gets and sets the property Name.
            <para>
            If the <code>Attribute</code> value is <code>Properties</code>, the name of the property.
            For all other attributes, the value is null.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ResourceTargetDefinition.RequiresRecreation">
            <summary>
            Gets and sets the property RequiresRecreation.
            <para>
            If the <code>Attribute</code> value is <code>Properties</code>, indicates whether
            a change to this property causes the resource to be recreated. The value can be <code>Never</code>,
            <code>Always</code>, or <code>Conditionally</code>. To determine the conditions for
            a <code>Conditionally</code> recreation, see the update behavior for that <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">property</a>
            in the AWS CloudFormation User Guide.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.SetStackPolicyRequest">
            <summary>
            Container for the parameters to the SetStackPolicy operation.
            Sets a stack policy for a specified stack.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.SetStackPolicyRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name or unique stack ID that you want to associate a policy with.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.SetStackPolicyRequest.StackPolicyBody">
            <summary>
            Gets and sets the property StackPolicyBody.
            <para>
            Structure containing the stack policy body. For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html">
            Prevent Updates to Stack Resources</a> in the AWS CloudFormation User Guide. You can
            specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code>
            parameter, but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.SetStackPolicyRequest.StackPolicyURL">
            <summary>
            Gets and sets the property StackPolicyURL.
            <para>
            Location of a file containing the stack policy. The URL must point to a policy (maximum
            size: 16 KB) located in an S3 bucket in the same region as the stack. You can specify
            either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter,
            but not both.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.SetStackPolicyResponse">
            <summary>
            This is the response object from the SetStackPolicy operation.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.SignalResourceRequest">
            <summary>
            Container for the parameters to the SignalResource operation.
            Sends a signal to the specified resource with a success or failure status. You can
            use the SignalResource API in conjunction with a creation policy or update policy.
            AWS CloudFormation doesn't proceed with a stack creation or update until resources
            receive the required number of signals or the timeout period is exceeded. The SignalResource
            API is useful in cases where you want to send signals from anywhere other than an
            Amazon EC2 instance.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.SignalResourceRequest.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The logical ID of the resource that you want to signal. The logical ID is the name
            of the resource that given in the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.SignalResourceRequest.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The stack name or unique stack ID that includes the resource that you want to signal.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.SignalResourceRequest.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the signal, which is either success or failure. A failure signal causes
            AWS CloudFormation to immediately fail the stack creation or update.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.SignalResourceRequest.UniqueId">
            <summary>
            Gets and sets the property UniqueId.
            <para>
            A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups,
            specify the instance ID that you are signaling as the unique ID. If you send multiple
            signals to a single resource (such as signaling a wait condition), each signal requires
            a different unique ID.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.SignalResourceResponse">
            <summary>
            This is the response object from the SignalResource operation.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Stack">
            <summary>
            The Stack data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            The capabilities allowed in the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.ChangeSetId">
            <summary>
            Gets and sets the property ChangeSetId.
            <para>
            The unique ID of the change set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.CreationTime">
            <summary>
            Gets and sets the property CreationTime.
            <para>
            The time at which the stack was created.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            A user-defined description associated with the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.DisableRollback">
            <summary>
            Gets and sets the property DisableRollback.
            <para>
            Boolean to enable or disable rollback on stack creation failures:
            </para>
             <ul> <li>
            <para>
             <code>true</code>: disable rollback
            </para>
             </li> <li>
            <para>
             <code>false</code>: enable rollback
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.LastUpdatedTime">
            <summary>
            Gets and sets the property LastUpdatedTime.
            <para>
            The time the stack was last updated. This field will only be returned if the stack
            has been updated at least once.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.NotificationARNs">
            <summary>
            Gets and sets the property NotificationARNs.
            <para>
            SNS topic ARNs to which stack related events are published.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.Outputs">
            <summary>
            Gets and sets the property Outputs.
            <para>
            A list of output structures.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of <code>Parameter</code> structures.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.RoleARN">
            <summary>
            Gets and sets the property RoleARN.
            <para>
            The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role
            that is associated with the stack. During a stack operation, AWS CloudFormation uses
            this role's credentials to make calls on your behalf.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            Unique identifier of the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name associated with the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.StackStatus">
            <summary>
            Gets and sets the property StackStatus.
            <para>
            Current status of the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.StackStatusReason">
            <summary>
            Gets and sets the property StackStatusReason.
            <para>
            Success/failure message associated with the stack status.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            A list of <code>Tag</code>s that specify information about the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Stack.TimeoutInMinutes">
            <summary>
            Gets and sets the property TimeoutInMinutes.
            <para>
            The amount of time within which stack creation should complete.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackEvent">
            <summary>
            The StackEvent data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.ClientRequestToken">
            <summary>
            Gets and sets the property ClientRequestToken.
            <para>
            The token passed to the operation that generated this event.
            </para>
             
            <para>
            All events triggered by a given stack operation are assigned the same client request
            token, which you can use to track operations. For example, if you execute a <code>CreateStack</code>
            operation with the token <code>token1</code>, then all the <code>StackEvents</code>
            generated by that operation will have <code>ClientRequestToken</code> set as <code>token1</code>.
            </para>
             
            <para>
            In the console, stack operations display the client request token on the Events tab.
            Stack operations that are initiated from the console use the token format <i>Console-StackOperation-ID</i>,
            which helps you easily identify the stack operation . For example, if you create a
            stack using the console, each stack event would be assigned the same token in the
            following format: <code>Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002</code>.
            
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.EventId">
            <summary>
            Gets and sets the property EventId.
            <para>
            The unique ID of this event.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The logical name of the resource specified in the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.PhysicalResourceId">
            <summary>
            Gets and sets the property PhysicalResourceId.
            <para>
            The name or unique identifier associated with the physical instance of the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceProperties">
            <summary>
            Gets and sets the property ResourceProperties.
            <para>
            BLOB of the properties used to create the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceStatus">
            <summary>
            Gets and sets the property ResourceStatus.
            <para>
            Current status of the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceStatusReason">
            <summary>
            Gets and sets the property ResourceStatusReason.
            <para>
            Success/failure message associated with the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceType">
            <summary>
            Gets and sets the property ResourceType.
            <para>
            Type of resource. (For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">
            AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            The unique ID name of the instance of the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name associated with a stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackEvent.Timestamp">
            <summary>
            Gets and sets the property Timestamp.
            <para>
            Time the status was updated.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackInstance">
            <summary>
            An AWS CloudFormation stack, in a specific account and region, that's part of a stack
            set operation. A stack instance is a reference to an attempted or actual stack in
            a given account within a given region. A stack instance can exist without a stack—for
            example, if the stack couldn't be created for some reason. A stack instance is associated
            with only one stack set. Each stack instance contains the ID of its associated stack
            set, as well as the ID of the actual stack and the stack status.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstance.Account">
            <summary>
            Gets and sets the property Account.
            <para>
            The name of the AWS account that the stack instance is associated with.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstance.Region">
            <summary>
            Gets and sets the property Region.
            <para>
            The name of the AWS region that the stack instance is associated with.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstance.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            The ID of the stack instance.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstance.StackSetId">
            <summary>
            Gets and sets the property StackSetId.
            <para>
            The name or unique ID of the stack set that the stack instance is associated with.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstance.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the stack instance, in terms of its synchronization with its associated
            stack set.
            </para>
             <ul> <li>
            <para>
             <code>INOPERABLE</code>: A <code>DeleteStackInstances</code> operation has failed
            and left the stack in an unstable state. Stacks in this state are excluded from further
            <code>UpdateStackSet</code> and <code>DeleteStackInstances</code> operations. You
            might need to clean up the stack manually.
            </para>
             </li> <li>
            <para>
             <code>OUTDATED</code>: The stack isn't currently up to date with the stack set because:
            </para>
             <ul> <li>
            <para>
            The associated stack failed during a <code>CreateStackSet</code> or <code>UpdateStackSet</code>
            operation.
            </para>
             </li> <li>
            <para>
            The stack was part of a <code>CreateStackSet</code> or <code>UpdateStackSet</code>
            operation that failed or was stopped before the stack was created or updated.
            </para>
             </li> </ul> </li> <li>
            <para>
             <code>CURRENT</code>: The stack is currently up to date with the stack set.
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstance.StatusReason">
            <summary>
            Gets and sets the property StatusReason.
            <para>
            The explanation for the specific status code that is assigned to this stack instance.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackInstanceNotFoundException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackInstanceNotFoundException.#ctor(System.String)">
            <summary>
            Constructs a new StackInstanceNotFoundException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackInstanceNotFoundException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of StackInstanceNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackInstanceNotFoundException.#ctor(System.Exception)">
            <summary>
            Construct instance of StackInstanceNotFoundException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackInstanceNotFoundException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StackInstanceNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackInstanceNotFoundException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StackInstanceNotFoundException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackInstanceNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the StackInstanceNotFoundException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackInstanceSummary">
            <summary>
            The structure that contains summary information about a stack instance.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstanceSummary.Account">
            <summary>
            Gets and sets the property Account.
            <para>
            The name of the AWS account that the stack instance is associated with.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstanceSummary.Region">
            <summary>
            Gets and sets the property Region.
            <para>
            The name of the AWS region that the stack instance is associated with.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstanceSummary.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            The ID of the stack instance.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstanceSummary.StackSetId">
            <summary>
            Gets and sets the property StackSetId.
            <para>
            The name or unique ID of the stack set that the stack instance is associated with.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstanceSummary.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the stack instance, in terms of its synchronization with its associated
            stack set.
            </para>
             <ul> <li>
            <para>
             <code>INOPERABLE</code>: A <code>DeleteStackInstances</code> operation has failed
            and left the stack in an unstable state. Stacks in this state are excluded from further
            <code>UpdateStackSet</code> and <code>DeleteStackInstances</code> operations. You
            might need to clean up the stack manually.
            </para>
             </li> <li>
            <para>
             <code>OUTDATED</code>: The stack isn't currently up to date with the stack set because:
            </para>
             <ul> <li>
            <para>
            The associated stack failed during a <code>CreateStackSet</code> or <code>UpdateStackSet</code>
            operation.
            </para>
             </li> <li>
            <para>
            The stack was part of a <code>CreateStackSet</code> or <code>UpdateStackSet</code>
            operation that failed or was stopped before the stack was created or updated.
            </para>
             </li> </ul> </li> <li>
            <para>
             <code>CURRENT</code>: The stack is currently up to date with the stack set.
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackInstanceSummary.StatusReason">
            <summary>
            Gets and sets the property StatusReason.
            <para>
            The explanation for the specific status code assigned to this stack instance.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackResource">
            <summary>
            The StackResource data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            User defined description associated with the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The logical name of the resource specified in the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.PhysicalResourceId">
            <summary>
            Gets and sets the property PhysicalResourceId.
            <para>
            The name or unique identifier that corresponds to a physical instance ID of a resource
            supported by AWS CloudFormation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.ResourceStatus">
            <summary>
            Gets and sets the property ResourceStatus.
            <para>
            Current status of the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.ResourceStatusReason">
            <summary>
            Gets and sets the property ResourceStatusReason.
            <para>
            Success/failure message associated with the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.ResourceType">
            <summary>
            Gets and sets the property ResourceType.
            <para>
            Type of resource. (For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">
            AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            Unique identifier of the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name associated with the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResource.Timestamp">
            <summary>
            Gets and sets the property Timestamp.
            <para>
            Time the status was updated.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackResourceDetail">
            <summary>
            Contains detailed information about the specified stack resource.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            User defined description associated with the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.LastUpdatedTimestamp">
            <summary>
            Gets and sets the property LastUpdatedTimestamp.
            <para>
            Time the status was updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The logical name of the resource specified in the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.Metadata">
            <summary>
            Gets and sets the property Metadata.
            <para>
            The content of the <code>Metadata</code> attribute declared for the resource. For
            more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html">Metadata
            Attribute</a> in the AWS CloudFormation User Guide.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.PhysicalResourceId">
            <summary>
            Gets and sets the property PhysicalResourceId.
            <para>
            The name or unique identifier that corresponds to a physical instance ID of a resource
            supported by AWS CloudFormation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.ResourceStatus">
            <summary>
            Gets and sets the property ResourceStatus.
            <para>
            Current status of the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.ResourceStatusReason">
            <summary>
            Gets and sets the property ResourceStatusReason.
            <para>
            Success/failure message associated with the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.ResourceType">
            <summary>
            Gets and sets the property ResourceType.
            <para>
            Type of resource. ((For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">
            AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            Unique identifier of the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name associated with the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackResourceSummary">
            <summary>
            Contains high-level information about the specified stack resource.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.LastUpdatedTimestamp">
            <summary>
            Gets and sets the property LastUpdatedTimestamp.
            <para>
            Time the status was updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.LogicalResourceId">
            <summary>
            Gets and sets the property LogicalResourceId.
            <para>
            The logical name of the resource specified in the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.PhysicalResourceId">
            <summary>
            Gets and sets the property PhysicalResourceId.
            <para>
            The name or unique identifier that corresponds to a physical instance ID of the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.ResourceStatus">
            <summary>
            Gets and sets the property ResourceStatus.
            <para>
            Current status of the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.ResourceStatusReason">
            <summary>
            Gets and sets the property ResourceStatusReason.
            <para>
            Success/failure message associated with the resource.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.ResourceType">
            <summary>
            Gets and sets the property ResourceType.
            <para>
            Type of resource. (For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">
            AWS Resource Types Reference</a> in the AWS CloudFormation User Guide.)
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSet">
            <summary>
            A structure that contains information about a stack set. A stack set enables you to
            provision stacks into AWS accounts and across regions by using a single CloudFormation
            template. In the stack set, you specify the template to use, as well as any parameters
            and capabilities that the template requires.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            The capabilities that are allowed in the stack set. Some stack set templates might
            include resources that can affect permissions in your AWS account—for example, by
            creating new AWS Identity and Access Management (IAM) users. For more information,
            see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates.</a>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            A description of the stack set that you specify when the stack set is created or updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of input parameters for a stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.StackSetId">
            <summary>
            Gets and sets the property StackSetId.
            <para>
            The ID of the stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name that's associated with the stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            A list of tags that specify information about the stack set. A maximum number of 50
            tags can be specified.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSet.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            The structure that contains the body of the template that was used to create or update
            the stack set.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSetNotEmptyException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotEmptyException.#ctor(System.String)">
            <summary>
            Constructs a new StackSetNotEmptyException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotEmptyException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of StackSetNotEmptyException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotEmptyException.#ctor(System.Exception)">
            <summary>
            Construct instance of StackSetNotEmptyException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotEmptyException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StackSetNotEmptyException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotEmptyException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StackSetNotEmptyException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotEmptyException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the StackSetNotEmptyException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotFoundException.#ctor(System.String)">
            <summary>
            Constructs a new StackSetNotFoundException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotFoundException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of StackSetNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotFoundException.#ctor(System.Exception)">
            <summary>
            Construct instance of StackSetNotFoundException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotFoundException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StackSetNotFoundException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotFoundException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StackSetNotFoundException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StackSetNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the StackSetNotFoundException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSetOperation">
            <summary>
            The structure that contains information about a stack set operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.Action">
            <summary>
            Gets and sets the property Action.
            <para>
            The type of stack set operation: <code>CREATE</code>, <code>UPDATE</code>, or <code>DELETE</code>.
            Create and delete operations affect only the specified stack set instances that are
            associated with the specified stack set. Update operations affect both the stack set
            itself, as well as <i>all</i> associated stack set instances.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.CreationTimestamp">
            <summary>
            Gets and sets the property CreationTimestamp.
            <para>
            The time at which the operation was initiated. Note that the creation times for the
            stack set operation might differ from the creation time of the individual stacks themselves.
            This is because AWS CloudFormation needs to perform preparatory work for the operation,
            such as dispatching the work to the requested regions, before actually creating the
            first stacks.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.EndTimestamp">
            <summary>
            Gets and sets the property EndTimestamp.
            <para>
            The time at which the stack set operation ended, across all accounts and regions specified.
            Note that this doesn't necessarily mean that the stack set operation was successful,
            or even attempted, in each account or region.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique ID of a stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.OperationPreferences">
            <summary>
            Gets and sets the property OperationPreferences.
            <para>
            The preferences for how AWS CloudFormation performs this stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.RetainStacks">
            <summary>
            Gets and sets the property RetainStacks.
            <para>
            For stack set operations of action type <code>DELETE</code>, specifies whether to
            remove the stack instances from the specified stack set, but doesn't delete the stacks.
            You can't reassociate a retained stack, or add an existing, saved stack to a new stack
            set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.StackSetId">
            <summary>
            Gets and sets the property StackSetId.
            <para>
            The ID of the stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperation.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the operation.
            </para>
             <ul> <li>
            <para>
             <code>FAILED</code>: The operation exceeded the specified failure tolerance. The
            failure tolerance value that you've set for an operation is applied for each region
            during stack create and update operations. If the number of failed stacks within a
            region exceeds the failure tolerance, the status of the operation in the region is
            set to <code>FAILED</code>. This in turn sets the status of the operation as a whole
            to <code>FAILED</code>, and AWS CloudFormation cancels the operation in any remaining
            regions.
            </para>
             </li> <li>
            <para>
             <code>RUNNING</code>: The operation is currently being performed.
            </para>
             </li> <li>
            <para>
             <code>STOPPED</code>: The user has cancelled the operation.
            </para>
             </li> <li>
            <para>
             <code>STOPPING</code>: The operation is in the process of stopping, at user request.
            
            </para>
             </li> <li>
            <para>
             <code>SUCCEEDED</code>: The operation completed creating or updating all the specified
            stacks without exceeding the failure tolerance for the operation.
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSetOperationPreferences">
            <summary>
            The user-specified preferences for how AWS CloudFormation performs a stack set operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationPreferences.FailureToleranceCount">
            <summary>
            Gets and sets the property FailureToleranceCount.
            <para>
            The number of accounts, per region, for which this operation can fail before AWS CloudFormation
            stops the operation in that region. If the operation is stopped in a region, AWS CloudFormation
            doesn't attempt the operation in any subsequent regions.
            </para>
             
            <para>
            Conditional: You must specify either <code>FailureToleranceCount</code> or <code>FailureTolerancePercentage</code>
            (but not both).
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationPreferences.FailureTolerancePercentage">
            <summary>
            Gets and sets the property FailureTolerancePercentage.
            <para>
            The percentage of accounts, per region, for which this stack operation can fail before
            AWS CloudFormation stops the operation in that region. If the operation is stopped
            in a region, AWS CloudFormation doesn't attempt the operation in any subsequent regions.
            </para>
             
            <para>
            When calculating the number of accounts based on the specified percentage, AWS CloudFormation
            rounds <i>down</i> to the next whole number.
            </para>
             
            <para>
            Conditional: You must specify either <code>FailureToleranceCount</code> or <code>FailureTolerancePercentage</code>,
            but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationPreferences.MaxConcurrentCount">
            <summary>
            Gets and sets the property MaxConcurrentCount.
            <para>
            The maximum number of accounts in which to perform this operation at one time. This
            is dependent on the value of <code>FailureToleranceCount</code>—<code>MaxConcurrentCount</code>
            is at most one more than the <code>FailureToleranceCount</code> .
            </para>
             
            <para>
            Conditional: You must specify either <code>MaxConcurrentCount</code> or <code>MaxConcurrentPercentage</code>,
            but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationPreferences.MaxConcurrentPercentage">
            <summary>
            Gets and sets the property MaxConcurrentPercentage.
            <para>
            The maximum percentage of accounts in which to perform this operation at one time.
            </para>
             
            <para>
            When calculating the number of accounts based on the specified percentage, AWS CloudFormation
            rounds down to the next whole number. This is true except in cases where rounding
            down would result is zero. In this case, CloudFormation sets the number as one instead.
            </para>
             
            <para>
            Conditional: You must specify either <code>MaxConcurrentCount</code> or <code>MaxConcurrentPercentage</code>,
            but not both.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationPreferences.RegionOrder">
            <summary>
            Gets and sets the property RegionOrder.
            <para>
            The order of the regions in where you want to perform the stack operation.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSetOperationResultSummary">
            <summary>
            The structure that contains information about a specified operation's results for
            a given account in a given region.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationResultSummary.Account">
            <summary>
            Gets and sets the property Account.
            <para>
            The name of the AWS account for this operation result.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationResultSummary.AccountGateResult">
            <summary>
            Gets and sets the property AccountGateResult.
            <para>
            The results of the account gate function AWS CloudFormation invokes, if present, before
            proceeding with stack set operations in an account
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationResultSummary.Region">
            <summary>
            Gets and sets the property Region.
            <para>
            The name of the AWS region for this operation result.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationResultSummary.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The result status of the stack set operation for the given account in the given region.
            </para>
             <ul> <li>
            <para>
             <code>CANCELLED</code>: The operation in the specified account and region has been
            cancelled. This is either because a user has stopped the stack set operation, or because
            the failure tolerance of the stack set operation has been exceeded.
            </para>
             </li> <li>
            <para>
             <code>FAILED</code>: The operation in the specified account and region failed.
            </para>
             
            <para>
            If the stack set operation fails in enough accounts within a region, the failure tolerance
            for the stack set operation as a whole might be exceeded.
            </para>
             </li> <li>
            <para>
             <code>RUNNING</code>: The operation in the specified account and region is currently
            in progress.
            </para>
             </li> <li>
            <para>
             <code>PENDING</code>: The operation in the specified account and region has yet to
            start.
            </para>
             </li> <li>
            <para>
             <code>SUCCEEDED</code>: The operation in the specified account and region completed
            successfully.
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationResultSummary.StatusReason">
            <summary>
            Gets and sets the property StatusReason.
            <para>
            The reason for the assigned result status.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSetOperationSummary">
            <summary>
            The structures that contain summary information about the specified operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationSummary.Action">
            <summary>
            Gets and sets the property Action.
            <para>
            The type of operation: <code>CREATE</code>, <code>UPDATE</code>, or <code>DELETE</code>.
            Create and delete operations affect only the specified stack instances that are associated
            with the specified stack set. Update operations affect both the stack set itself as
            well as <i>all</i> associated stack set instances.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationSummary.CreationTimestamp">
            <summary>
            Gets and sets the property CreationTimestamp.
            <para>
            The time at which the operation was initiated. Note that the creation times for the
            stack set operation might differ from the creation time of the individual stacks themselves.
            This is because AWS CloudFormation needs to perform preparatory work for the operation,
            such as dispatching the work to the requested regions, before actually creating the
            first stacks.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationSummary.EndTimestamp">
            <summary>
            Gets and sets the property EndTimestamp.
            <para>
            The time at which the stack set operation ended, across all accounts and regions specified.
            Note that this doesn't necessarily mean that the stack set operation was successful,
            or even attempted, in each account or region.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationSummary.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique ID of the stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetOperationSummary.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The overall status of the operation.
            </para>
             <ul> <li>
            <para>
             <code>FAILED</code>: The operation exceeded the specified failure tolerance. The
            failure tolerance value that you've set for an operation is applied for each region
            during stack create and update operations. If the number of failed stacks within a
            region exceeds the failure tolerance, the status of the operation in the region is
            set to <code>FAILED</code>. This in turn sets the status of the operation as a whole
            to <code>FAILED</code>, and AWS CloudFormation cancels the operation in any remaining
            regions.
            </para>
             </li> <li>
            <para>
             <code>RUNNING</code>: The operation is currently being performed.
            </para>
             </li> <li>
            <para>
             <code>STOPPED</code>: The user has cancelled the operation.
            </para>
             </li> <li>
            <para>
             <code>STOPPING</code>: The operation is in the process of stopping, at user request.
            
            </para>
             </li> <li>
            <para>
             <code>SUCCEEDED</code>: The operation completed creating or updating all the specified
            stacks without exceeding the failure tolerance for the operation.
            </para>
             </li> </ul>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSetSummary">
            <summary>
            The structures that contain summary information about the specified stack set.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetSummary.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            A description of the stack set that you specify when the stack set is created or updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetSummary.StackSetId">
            <summary>
            Gets and sets the property StackSetId.
            <para>
            The ID of the stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetSummary.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name of the stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSetSummary.Status">
            <summary>
            Gets and sets the property Status.
            <para>
            The status of the stack set.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StackSummary">
            <summary>
            The StackSummary Data Type
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.CreationTime">
            <summary>
            Gets and sets the property CreationTime.
            <para>
            The time the stack was created.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.DeletionTime">
            <summary>
            Gets and sets the property DeletionTime.
            <para>
            The time the stack was deleted.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.LastUpdatedTime">
            <summary>
            Gets and sets the property LastUpdatedTime.
            <para>
            The time the stack was last updated. This field will only be returned if the stack
            has been updated at least once.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            Unique stack identifier.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.StackName">
            <summary>
            Gets and sets the property StackName.
            <para>
            The name associated with the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.StackStatus">
            <summary>
            Gets and sets the property StackStatus.
            <para>
            The current status of the stack.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.StackStatusReason">
            <summary>
            Gets and sets the property StackStatusReason.
            <para>
            Success/Failure message associated with the stack status.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StackSummary.TemplateDescription">
            <summary>
            Gets and sets the property TemplateDescription.
            <para>
            The template description of the template used to create the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StaleRequestException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StaleRequestException.#ctor(System.String)">
            <summary>
            Constructs a new StaleRequestException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StaleRequestException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of StaleRequestException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StaleRequestException.#ctor(System.Exception)">
            <summary>
            Construct instance of StaleRequestException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StaleRequestException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StaleRequestException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StaleRequestException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of StaleRequestException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.StaleRequestException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the StaleRequestException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StopStackSetOperationRequest">
            <summary>
            Container for the parameters to the StopStackSetOperation operation.
            Stops an in-progress operation on a stack set and its associated stack instances.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StopStackSetOperationRequest.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The ID of the stack operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.StopStackSetOperationRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you want to stop the operation for.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.StopStackSetOperationResponse">
            <summary>
            This is the response object from the StopStackSetOperation operation.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.Tag">
            <summary>
            The Tag type enables you to specify a key-value pair that can be used to store information
            about an AWS CloudFormation stack.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Tag.Key">
            <summary>
            Gets and sets the property Key.
            <para>
             <i>Required</i>. A string used to identify this tag. You can specify a maximum of
            128 characters for a tag key. Tags owned by Amazon Web Services (AWS) have the reserved
            prefix: <code>aws:</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.Tag.Value">
            <summary>
            Gets and sets the property Value.
            <para>
             <i>Required</i>. A string containing the value for this tag. You can specify a maximum
            of 256 characters for a tag value.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.TemplateParameter">
            <summary>
            The TemplateParameter data type.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.TemplateParameter.DefaultValue">
            <summary>
            Gets and sets the property DefaultValue.
            <para>
            The default value associated with the parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.TemplateParameter.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            User defined description associated with the parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.TemplateParameter.NoEcho">
            <summary>
            Gets and sets the property NoEcho.
            <para>
            Flag indicating whether the parameter should be displayed as plain text in logs and
            UIs.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.TemplateParameter.ParameterKey">
            <summary>
            Gets and sets the property ParameterKey.
            <para>
            The name associated with the parameter.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            <summary>
             CloudFormation exception
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Model.TokenAlreadyExistsException.#ctor(System.String)">
            <summary>
            Constructs a new TokenAlreadyExistsException with the specified error
            message.
            </summary>
            <param name="message">
            Describes the error encountered.
            </param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.TokenAlreadyExistsException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of TokenAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.TokenAlreadyExistsException.#ctor(System.Exception)">
            <summary>
            Construct instance of TokenAlreadyExistsException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.TokenAlreadyExistsException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of TokenAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.TokenAlreadyExistsException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of TokenAlreadyExistsException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.Model.TokenAlreadyExistsException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the TokenAlreadyExistsException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.Model.UpdateStackResponse">
            <summary>
            The output for an <a>UpdateStack</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackResponse.StackId">
            <summary>
            Gets and sets the property StackId.
            <para>
            Unique identifier of the stack.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.UpdateStackSetRequest">
            <summary>
            Container for the parameters to the UpdateStackSet operation.
            Updates the stack set and <i>all</i> associated stack instances.
            
             
            <para>
            Even if the stack set operation created by updating the stack set fails (completely
            or partially, below or above a specified failure tolerance), the stack set is updated
            with your changes. Subsequent <a>CreateStackInstances</a> calls on the specified stack
            set use the updated stack set.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            A list of values that you must specify before AWS CloudFormation can create certain
            stack sets. Some stack set templates might include resources that can affect permissions
            in your AWS account—for example, by creating new AWS Identity and Access Management
            (IAM) users. For those stack sets, you must explicitly acknowledge their capabilities
            by specifying this parameter.
            </para>
             
            <para>
            The only valid values are CAPABILITY_IAM and CAPABILITY_NAMED_IAM. The following resources
            require you to specify this parameter:
            </para>
             <ul> <li>
            <para>
            AWS::IAM::AccessKey
            </para>
             </li> <li>
            <para>
            AWS::IAM::Group
            </para>
             </li> <li>
            <para>
            AWS::IAM::InstanceProfile
            </para>
             </li> <li>
            <para>
            AWS::IAM::Policy
            </para>
             </li> <li>
            <para>
            AWS::IAM::Role
            </para>
             </li> <li>
            <para>
            AWS::IAM::User
            </para>
             </li> <li>
            <para>
            AWS::IAM::UserToGroupAddition
            </para>
             </li> </ul>
            <para>
            If your stack template contains these resources, we recommend that you review all
            permissions that are associated with them and edit their permissions if necessary.
            </para>
             
            <para>
            If you have IAM resources, you can specify either capability. If you have IAM resources
            with custom names, you must specify CAPABILITY_NAMED_IAM. If you don't specify this
            parameter, this action returns an <code>InsufficientCapabilities</code> error.
            </para>
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates.</a>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            A brief description of updates that you are making.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique ID for this stack set operation.
            </para>
             
            <para>
            The operation ID also functions as an idempotency token, to ensure that AWS CloudFormation
            performs the stack set operation only once, even if you retry the request multiple
            times. You might retry stack set operation requests to ensure that AWS CloudFormation
            successfully received them.
            </para>
             
            <para>
            If you don't specify an operation ID, AWS CloudFormation generates one automatically.
            </para>
             
            <para>
            Repeating this stack set operation with a new operation ID retries all stack instances
            whose status is <code>OUTDATED</code>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.OperationPreferences">
            <summary>
            Gets and sets the property OperationPreferences.
            <para>
            Preferences for how AWS CloudFormation performs this stack set operation.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of input parameters for the stack set template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.StackSetName">
            <summary>
            Gets and sets the property StackSetName.
            <para>
            The name or unique ID of the stack set that you want to update.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.Tags">
            <summary>
            Gets and sets the property Tags.
            <para>
            The key-value pairs to associate with this stack set and the stacks created from it.
            AWS CloudFormation also propagates these tags to supported resources that are created
            in the stacks. You can specify a maximum number of 50 tags.
            </para>
             
            <para>
            If you specify tags for this parameter, those tags replace any list of tags that are
            currently associated with this stack set. This means:
            </para>
             <ul> <li>
            <para>
            If you don't specify this parameter, AWS CloudFormation doesn't modify the stack's
            tags.
            </para>
             </li> <li>
            <para>
            If you specify <i>any</i> tags using this parameter, you must specify <i>all</i> the
            tags that you want associated with this stack set, even tags you've specifed before
            (for example, when creating the stack set or during a previous update of the stack
            set.). Any tags that you don't include in the updated list of tags are removed from
            the stack set, and therefore from the stacks and resources as well.
            </para>
             </li> <li>
            <para>
            If you specify an empty value, AWS CloudFormation removes all currently associated
            tags.
            </para>
             </li> </ul>
            <para>
            If you specify new tags as part of an <code>UpdateStackSet</code> action, AWS CloudFormation
            checks to see if you have the required IAM permission to tag resources. If you omit
            tags that are currently associated with the stack set from the list of tags you specify,
            AWS CloudFormation assumes that you want to remove those tags from the stack set,
            and checks to see if you have permission to untag resources. If you don't have the
            necessary permission(s), the entire <code>UpdateStackSet</code> action fails with
            an <code>access denied</code> error, and the stack set is not updated.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            The structure that contains the template body, with a minimum length of 1 byte and
            a maximum length of 51,200 bytes. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>TemplateBody</code>
            or <code>TemplateURL</code>—or set <code>UsePreviousTemplate</code> to true.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            The location of the file that contains the template body. The URL must point to a
            template (maximum size: 460,800 bytes) that is located in an Amazon S3 bucket. For
            more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>TemplateBody</code>
            or <code>TemplateURL</code>—or set <code>UsePreviousTemplate</code> to true.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetRequest.UsePreviousTemplate">
            <summary>
            Gets and sets the property UsePreviousTemplate.
            <para>
            Use the existing template that's associated with the stack set that you're updating.
            </para>
             
            <para>
            Conditional: You must specify only one of the following parameters: <code>TemplateBody</code>
            or <code>TemplateURL</code>—or set <code>UsePreviousTemplate</code> to true.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.UpdateStackSetResponse">
            <summary>
            This is the response object from the UpdateStackSet operation.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.UpdateStackSetResponse.OperationId">
            <summary>
            Gets and sets the property OperationId.
            <para>
            The unique ID for this stack set operation.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ValidateTemplateRequest">
            <summary>
            Container for the parameters to the ValidateTemplate operation.
            Validates a specified template. AWS CloudFormation first checks if the template is
            valid JSON. If it isn't, AWS CloudFormation checks if the template is valid YAML.
            If both these checks fail, AWS CloudFormation returns a template validation error.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ValidateTemplateRequest.TemplateBody">
            <summary>
            Gets and sets the property TemplateBody.
            <para>
            Structure containing the template body with a minimum length of 1 byte and a maximum
            length of 51,200 bytes. For more information, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>.
            If both are passed, only <code>TemplateBody</code> is used.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ValidateTemplateRequest.TemplateURL">
            <summary>
            Gets and sets the property TemplateURL.
            <para>
            Location of file containing the template body. The URL must point to a template (max
            size: 460,800 bytes) that is located in an Amazon S3 bucket. For more information,
            go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
            Anatomy</a> in the AWS CloudFormation User Guide.
            </para>
             
            <para>
            Conditional: You must pass <code>TemplateURL</code> or <code>TemplateBody</code>.
            If both are passed, only <code>TemplateBody</code> is used.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Model.ValidateTemplateResponse">
            <summary>
            The output for <a>ValidateTemplate</a> action.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResponse.Capabilities">
            <summary>
            Gets and sets the property Capabilities.
            <para>
            The capabilities found within the template. If your template contains IAM resources,
            you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value for this parameter
            when you use the <a>CreateStack</a> or <a>UpdateStack</a> actions with your template;
            otherwise, those actions return an InsufficientCapabilities error.
            </para>
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging
            IAM Resources in AWS CloudFormation Templates</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResponse.CapabilitiesReason">
            <summary>
            Gets and sets the property CapabilitiesReason.
            <para>
            The list of resources that generated the values in the <code>Capabilities</code> response
            element.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResponse.DeclaredTransforms">
            <summary>
            Gets and sets the property DeclaredTransforms.
            <para>
            A list of the transforms that are declared in the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResponse.Description">
            <summary>
            Gets and sets the property Description.
            <para>
            The description found within the template.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResponse.Parameters">
            <summary>
            Gets and sets the property Parameters.
            <para>
            A list of <code>TemplateParameter</code> structures.
            </para>
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.Util.AmazonCloudFormationUtil">
            <summary>
            Utility methods for CloudFormation.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Util.AmazonCloudFormationUtil.SignalWaitCondition(System.String,System.String,System.String,System.String,System.String)">
            <summary>
            This method will signal to the CloudFormation the status of a wait condition.
            </summary>
            <param name="presignedURL">The URL returned from the creation of a WaitHandle in a CloudFormation Stack</param>
            <param name="status">SUCCESS or FAILURE for the status of a stack</param>
            <param name="reason">The reason for the status</param>
            <param name="uniqueId">A unique identifier for the signal. Using <c>Guid.NewGuid().ToString()</c>can be used for this.</param>
            <param name="data">Data to be passed back for later use in the template.</param>
        </member>
        <member name="T:Amazon.CloudFormation.AmazonCloudFormationConfig">
            <summary>
            Configuration for accessing Amazon CloudFormation service
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationConfig.#ctor">
            <summary>
            Default constructor
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.AmazonCloudFormationConfig.RegionEndpointServiceName">
            <summary>
            The constant used to lookup in the region hash the endpoint.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.AmazonCloudFormationConfig.ServiceVersion">
            <summary>
            Gets the ServiceVersion property.
            </summary>
        </member>
        <member name="P:Amazon.CloudFormation.AmazonCloudFormationConfig.UserAgent">
            <summary>
            Gets the value of UserAgent property.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.AmazonCloudFormationException">
            <summary>
             Common exception for the CloudFormation service.
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationException.#ctor(System.String)">
            <summary>
            Construct instance of AmazonCloudFormationException
            </summary>
            <param name="message"></param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationException.#ctor(System.String,System.Exception)">
            <summary>
            Construct instance of AmazonCloudFormationException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationException.#ctor(System.Exception)">
            <summary>
            Construct instance of AmazonCloudFormationException
            </summary>
            <param name="innerException"></param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationException.#ctor(System.String,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of AmazonCloudFormationException
            </summary>
            <param name="message"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationException.#ctor(System.String,System.Exception,Amazon.Runtime.ErrorType,System.String,System.String,System.Net.HttpStatusCode)">
            <summary>
            Construct instance of AmazonCloudFormationException
            </summary>
            <param name="message"></param>
            <param name="innerException"></param>
            <param name="errorType"></param>
            <param name="errorCode"></param>
            <param name="requestId"></param>
            <param name="statusCode"></param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Constructs a new instance of the AmazonCloudFormationException class with serialized data.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
            <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
            <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
        </member>
        <member name="T:Amazon.CloudFormation.AmazonCloudFormationRequest">
            <summary>
            Base class for CloudFormation operation requests.
            </summary>
        </member>
        <member name="T:Amazon.CloudFormation.AccountGateStatus">
            <summary>
            Constants used for properties of type AccountGateStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.AccountGateStatus.FAILED">
            <summary>
            Constant FAILED for AccountGateStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.AccountGateStatus.SKIPPED">
            <summary>
            Constant SKIPPED for AccountGateStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.AccountGateStatus.SUCCEEDED">
            <summary>
            Constant SUCCEEDED for AccountGateStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AccountGateStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AccountGateStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.AccountGateStatus.op_Implicit(System.String)~Amazon.CloudFormation.AccountGateStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Capability">
            <summary>
            Constants used for properties of type Capability.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.Capability.CAPABILITY_IAM">
            <summary>
            Constant CAPABILITY_IAM for Capability
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.Capability.CAPABILITY_NAMED_IAM">
            <summary>
            Constant CAPABILITY_NAMED_IAM for Capability
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Capability.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Capability.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.Capability.op_Implicit(System.String)~Amazon.CloudFormation.Capability">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ChangeAction">
            <summary>
            Constants used for properties of type ChangeAction.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeAction.Add">
            <summary>
            Constant Add for ChangeAction
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeAction.Modify">
            <summary>
            Constant Modify for ChangeAction
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeAction.Remove">
            <summary>
            Constant Remove for ChangeAction
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeAction.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeAction.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeAction.op_Implicit(System.String)~Amazon.CloudFormation.ChangeAction">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ChangeSetStatus">
            <summary>
            Constants used for properties of type ChangeSetStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSetStatus.CREATE_COMPLETE">
            <summary>
            Constant CREATE_COMPLETE for ChangeSetStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSetStatus.CREATE_IN_PROGRESS">
            <summary>
            Constant CREATE_IN_PROGRESS for ChangeSetStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSetStatus.CREATE_PENDING">
            <summary>
            Constant CREATE_PENDING for ChangeSetStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSetStatus.DELETE_COMPLETE">
            <summary>
            Constant DELETE_COMPLETE for ChangeSetStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSetStatus.FAILED">
            <summary>
            Constant FAILED for ChangeSetStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSetStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSetStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSetStatus.op_Implicit(System.String)~Amazon.CloudFormation.ChangeSetStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ChangeSetType">
            <summary>
            Constants used for properties of type ChangeSetType.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSetType.CREATE">
            <summary>
            Constant CREATE for ChangeSetType
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSetType.UPDATE">
            <summary>
            Constant UPDATE for ChangeSetType
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSetType.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSetType.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSetType.op_Implicit(System.String)~Amazon.CloudFormation.ChangeSetType">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ChangeSource">
            <summary>
            Constants used for properties of type ChangeSource.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSource.Automatic">
            <summary>
            Constant Automatic for ChangeSource
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSource.DirectModification">
            <summary>
            Constant DirectModification for ChangeSource
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSource.ParameterReference">
            <summary>
            Constant ParameterReference for ChangeSource
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSource.ResourceAttribute">
            <summary>
            Constant ResourceAttribute for ChangeSource
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeSource.ResourceReference">
            <summary>
            Constant ResourceReference for ChangeSource
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSource.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSource.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeSource.op_Implicit(System.String)~Amazon.CloudFormation.ChangeSource">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ChangeType">
            <summary>
            Constants used for properties of type ChangeType.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ChangeType.Resource">
            <summary>
            Constant Resource for ChangeType
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeType.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeType.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ChangeType.op_Implicit(System.String)~Amazon.CloudFormation.ChangeType">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.EvaluationType">
            <summary>
            Constants used for properties of type EvaluationType.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.EvaluationType.Dynamic">
            <summary>
            Constant Dynamic for EvaluationType
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.EvaluationType.Static">
            <summary>
            Constant Static for EvaluationType
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.EvaluationType.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.EvaluationType.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.EvaluationType.op_Implicit(System.String)~Amazon.CloudFormation.EvaluationType">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ExecutionStatus">
            <summary>
            Constants used for properties of type ExecutionStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ExecutionStatus.AVAILABLE">
            <summary>
            Constant AVAILABLE for ExecutionStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ExecutionStatus.EXECUTE_COMPLETE">
            <summary>
            Constant EXECUTE_COMPLETE for ExecutionStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ExecutionStatus.EXECUTE_FAILED">
            <summary>
            Constant EXECUTE_FAILED for ExecutionStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ExecutionStatus.EXECUTE_IN_PROGRESS">
            <summary>
            Constant EXECUTE_IN_PROGRESS for ExecutionStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ExecutionStatus.OBSOLETE">
            <summary>
            Constant OBSOLETE for ExecutionStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ExecutionStatus.UNAVAILABLE">
            <summary>
            Constant UNAVAILABLE for ExecutionStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ExecutionStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ExecutionStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ExecutionStatus.op_Implicit(System.String)~Amazon.CloudFormation.ExecutionStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.OnFailure">
            <summary>
            Constants used for properties of type OnFailure.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.OnFailure.DELETE">
            <summary>
            Constant DELETE for OnFailure
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.OnFailure.DO_NOTHING">
            <summary>
            Constant DO_NOTHING for OnFailure
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.OnFailure.ROLLBACK">
            <summary>
            Constant ROLLBACK for OnFailure
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.OnFailure.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.OnFailure.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.OnFailure.op_Implicit(System.String)~Amazon.CloudFormation.OnFailure">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.Replacement">
            <summary>
            Constants used for properties of type Replacement.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.Replacement.Conditional">
            <summary>
            Constant Conditional for Replacement
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.Replacement.False">
            <summary>
            Constant False for Replacement
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.Replacement.True">
            <summary>
            Constant True for Replacement
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Replacement.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.Replacement.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.Replacement.op_Implicit(System.String)~Amazon.CloudFormation.Replacement">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.RequiresRecreation">
            <summary>
            Constants used for properties of type RequiresRecreation.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.RequiresRecreation.Always">
            <summary>
            Constant Always for RequiresRecreation
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.RequiresRecreation.Conditionally">
            <summary>
            Constant Conditionally for RequiresRecreation
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.RequiresRecreation.Never">
            <summary>
            Constant Never for RequiresRecreation
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.RequiresRecreation.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.RequiresRecreation.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.RequiresRecreation.op_Implicit(System.String)~Amazon.CloudFormation.RequiresRecreation">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ResourceAttribute">
            <summary>
            Constants used for properties of type ResourceAttribute.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceAttribute.CreationPolicy">
            <summary>
            Constant CreationPolicy for ResourceAttribute
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceAttribute.DeletionPolicy">
            <summary>
            Constant DeletionPolicy for ResourceAttribute
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceAttribute.Metadata">
            <summary>
            Constant Metadata for ResourceAttribute
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceAttribute.Properties">
            <summary>
            Constant Properties for ResourceAttribute
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceAttribute.Tags">
            <summary>
            Constant Tags for ResourceAttribute
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceAttribute.UpdatePolicy">
            <summary>
            Constant UpdatePolicy for ResourceAttribute
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceAttribute.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceAttribute.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceAttribute.op_Implicit(System.String)~Amazon.CloudFormation.ResourceAttribute">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ResourceSignalStatus">
            <summary>
            Constants used for properties of type ResourceSignalStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceSignalStatus.FAILURE">
            <summary>
            Constant FAILURE for ResourceSignalStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceSignalStatus.SUCCESS">
            <summary>
            Constant SUCCESS for ResourceSignalStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceSignalStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceSignalStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceSignalStatus.op_Implicit(System.String)~Amazon.CloudFormation.ResourceSignalStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.ResourceStatus">
            <summary>
            Constants used for properties of type ResourceStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.CREATE_COMPLETE">
            <summary>
            Constant CREATE_COMPLETE for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.CREATE_FAILED">
            <summary>
            Constant CREATE_FAILED for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.CREATE_IN_PROGRESS">
            <summary>
            Constant CREATE_IN_PROGRESS for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.DELETE_COMPLETE">
            <summary>
            Constant DELETE_COMPLETE for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.DELETE_FAILED">
            <summary>
            Constant DELETE_FAILED for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.DELETE_IN_PROGRESS">
            <summary>
            Constant DELETE_IN_PROGRESS for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.DELETE_SKIPPED">
            <summary>
            Constant DELETE_SKIPPED for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.UPDATE_COMPLETE">
            <summary>
            Constant UPDATE_COMPLETE for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.UPDATE_FAILED">
            <summary>
            Constant UPDATE_FAILED for ResourceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.ResourceStatus.UPDATE_IN_PROGRESS">
            <summary>
            Constant UPDATE_IN_PROGRESS for ResourceStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.ResourceStatus.op_Implicit(System.String)~Amazon.CloudFormation.ResourceStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.StackInstanceStatus">
            <summary>
            Constants used for properties of type StackInstanceStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackInstanceStatus.CURRENT">
            <summary>
            Constant CURRENT for StackInstanceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackInstanceStatus.INOPERABLE">
            <summary>
            Constant INOPERABLE for StackInstanceStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackInstanceStatus.OUTDATED">
            <summary>
            Constant OUTDATED for StackInstanceStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackInstanceStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackInstanceStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.StackInstanceStatus.op_Implicit(System.String)~Amazon.CloudFormation.StackInstanceStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.StackSetOperationAction">
            <summary>
            Constants used for properties of type StackSetOperationAction.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationAction.CREATE">
            <summary>
            Constant CREATE for StackSetOperationAction
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationAction.DELETE">
            <summary>
            Constant DELETE for StackSetOperationAction
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationAction.UPDATE">
            <summary>
            Constant UPDATE for StackSetOperationAction
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationAction.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationAction.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationAction.op_Implicit(System.String)~Amazon.CloudFormation.StackSetOperationAction">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.StackSetOperationResultStatus">
            <summary>
            Constants used for properties of type StackSetOperationResultStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationResultStatus.CANCELLED">
            <summary>
            Constant CANCELLED for StackSetOperationResultStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationResultStatus.FAILED">
            <summary>
            Constant FAILED for StackSetOperationResultStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationResultStatus.PENDING">
            <summary>
            Constant PENDING for StackSetOperationResultStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationResultStatus.RUNNING">
            <summary>
            Constant RUNNING for StackSetOperationResultStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationResultStatus.SUCCEEDED">
            <summary>
            Constant SUCCEEDED for StackSetOperationResultStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationResultStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationResultStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationResultStatus.op_Implicit(System.String)~Amazon.CloudFormation.StackSetOperationResultStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.StackSetOperationStatus">
            <summary>
            Constants used for properties of type StackSetOperationStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationStatus.FAILED">
            <summary>
            Constant FAILED for StackSetOperationStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationStatus.RUNNING">
            <summary>
            Constant RUNNING for StackSetOperationStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationStatus.STOPPED">
            <summary>
            Constant STOPPED for StackSetOperationStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationStatus.STOPPING">
            <summary>
            Constant STOPPING for StackSetOperationStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetOperationStatus.SUCCEEDED">
            <summary>
            Constant SUCCEEDED for StackSetOperationStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetOperationStatus.op_Implicit(System.String)~Amazon.CloudFormation.StackSetOperationStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.StackSetStatus">
            <summary>
            Constants used for properties of type StackSetStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetStatus.ACTIVE">
            <summary>
            Constant ACTIVE for StackSetStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackSetStatus.DELETED">
            <summary>
            Constant DELETED for StackSetStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.StackSetStatus.op_Implicit(System.String)~Amazon.CloudFormation.StackSetStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.StackStatus">
            <summary>
            Constants used for properties of type StackStatus.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.CREATE_COMPLETE">
            <summary>
            Constant CREATE_COMPLETE for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.CREATE_FAILED">
            <summary>
            Constant CREATE_FAILED for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.CREATE_IN_PROGRESS">
            <summary>
            Constant CREATE_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.DELETE_COMPLETE">
            <summary>
            Constant DELETE_COMPLETE for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.DELETE_FAILED">
            <summary>
            Constant DELETE_FAILED for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.DELETE_IN_PROGRESS">
            <summary>
            Constant DELETE_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.REVIEW_IN_PROGRESS">
            <summary>
            Constant REVIEW_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.ROLLBACK_COMPLETE">
            <summary>
            Constant ROLLBACK_COMPLETE for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.ROLLBACK_FAILED">
            <summary>
            Constant ROLLBACK_FAILED for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.ROLLBACK_IN_PROGRESS">
            <summary>
            Constant ROLLBACK_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.UPDATE_COMPLETE">
            <summary>
            Constant UPDATE_COMPLETE for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.UPDATE_COMPLETE_CLEANUP_IN_PROGRESS">
            <summary>
            Constant UPDATE_COMPLETE_CLEANUP_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.UPDATE_IN_PROGRESS">
            <summary>
            Constant UPDATE_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.UPDATE_ROLLBACK_COMPLETE">
            <summary>
            Constant UPDATE_ROLLBACK_COMPLETE for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS">
            <summary>
            Constant UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.UPDATE_ROLLBACK_FAILED">
            <summary>
            Constant UPDATE_ROLLBACK_FAILED for StackStatus
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.StackStatus.UPDATE_ROLLBACK_IN_PROGRESS">
            <summary>
            Constant UPDATE_ROLLBACK_IN_PROGRESS for StackStatus
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackStatus.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.StackStatus.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.StackStatus.op_Implicit(System.String)~Amazon.CloudFormation.StackStatus">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.TemplateStage">
            <summary>
            Constants used for properties of type TemplateStage.
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.TemplateStage.Original">
            <summary>
            Constant Original for TemplateStage
            </summary>
        </member>
        <member name="F:Amazon.CloudFormation.TemplateStage.Processed">
            <summary>
            Constant Processed for TemplateStage
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.TemplateStage.#ctor(System.String)">
            <summary>
            This constant constructor does not need to be called if the constant
            you are attempting to use is already defined as a static instance of
            this class.
            This constructor should be used to construct constants that are not
            defined as statics, for instance if attempting to use a feature that is
            newer than the current version of the SDK.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.TemplateStage.FindValue(System.String)">
            <summary>
            Finds the constant for the unique value.
            </summary>
            <param name="value">The unique value for the constant</param>
            <returns>The constant for the unique value</returns>
        </member>
        <member name="M:Amazon.CloudFormation.TemplateStage.op_Implicit(System.String)~Amazon.CloudFormation.TemplateStage">
            <summary>
            Utility method to convert strings to the constant class.
            </summary>
            <param name="value">The string value to convert to the constant class.</param>
            <returns></returns>
        </member>
        <member name="T:Amazon.CloudFormation.AmazonCloudFormationClient">
             <summary>
             Implementation for accessing CloudFormation
            
             AWS CloudFormation
             <para>
             AWS CloudFormation allows you to create and manage AWS infrastructure deployments
             predictably and repeatedly. You can use AWS CloudFormation to leverage AWS products,
             such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification
             Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly
             scalable, cost-effective applications without creating or configuring the underlying
             AWS infrastructure.
             </para>
              
             <para>
             With AWS CloudFormation, you declare all of your resources and dependencies in a template
             file. The template defines a collection of resources as a single unit called a stack.
             AWS CloudFormation creates and deletes all member resources of the stack together
             and manages all dependencies between the resources for you.
             </para>
              
             <para>
             For more information about AWS CloudFormation, see the <a href="http://aws.amazon.com/cloudformation/">AWS
             CloudFormation Product Page</a>.
             </para>
              
             <para>
             Amazon CloudFormation makes use of other AWS products. If you need additional technical
             information about a specific AWS product, you can find the product's technical documentation
             at <a href="http://docs.aws.amazon.com/">docs.aws.amazon.com</a>.
             </para>
              
             <para>
              <i>APIs for stacks </i>
             </para>
              
             <para>
             When you use AWS CloudFormation, you manage related resources as a single unit called
             a stack. You create, update, and delete a collection of resources by creating, updating,
             and deleting stacks. All the resources in a stack are defined by the stack's AWS CloudFormation
             template.
             </para>
              
             <para>
             Actions
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CancelUpdateStack.html">CancelUpdateStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ContinueUpdateRollback.html">ContinueUpdateRollback</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStack.html">CreateStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteStack.html">DeleteStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackEvents.html">DescribeStackEvents</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackResource.html">DescribeStackResource</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackResources.html">DescribeStackResources</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStacks.html">DescribeStacks</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_EstimateTemplateCost.html">EstimateTemplateCost</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_GetStackPolicy.html">GetStackPolicy</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_GetTemplate.html">GetTemplate</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_GetTemplateSummary.html">GetTemplateSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListExports.html">ListExports</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListImports.html">ListImports</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackResources.html">ListStackResources</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStacks.html">ListStacks</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetStackPolicy.html">SetStackPolicy</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStack.html">UpdateStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ValidateTemplate.html">ValidateTemplate</a>
             
             </para>
              </li> </ul>
             <para>
             Data Types
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Export.html">Export</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ParameterConstraints.html">ParameterConstraints</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ParameterDeclaration.html">ParameterDeclaration</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Stack.html">Stack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackEvent.html">StackEvent</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackResource.html">StackResource</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackResourceDetail.html">StackResourceDetail</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackResourceSummary.html">StackResourceSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSummary.html">StackSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Tag.html">Tag</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_TemplateParameter.html">TemplateParameter</a>
             
             </para>
              </li> </ul>
             <para>
              <i>APIs for change sets</i>
             </para>
              
             <para>
             If you need to make changes to the running resources in a stack, you update the stack.
             Before making changes to your resources, you can generate a change set, which is summary
             of your proposed changes. Change sets allow you to see how your changes might impact
             your running resources, especially for critical resources, before implementing them.
             </para>
              
             <para>
             Actions
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">CreateChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteChangeSet.html">DeleteChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeChangeSet.html">DescribeChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListChangeSets.html">ListChangeSets</a>
             
             </para>
              </li> </ul>
             <para>
             Data Types
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Change.html">Change</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ChangeSetSummary.html">ChangeSetSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ResourceChange.html">ResourceChange</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ResourceChangeDetail.html">ResourceChangeDetail</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ResourceTargetDefinition.html">ResourceTargetDefinition</a>
             
             </para>
              </li> </ul>
             <para>
              <i>APIs for stack sets</i>
             </para>
              
             <para>
             AWS CloudFormation StackSets lets you create a collection, or stack set, of stacks
             that can automatically and safely provision a common set of AWS resources across multiple
             AWS accounts and multiple AWS regions from a single AWS CloudFormation template. When
             you create a stack set, AWS CloudFormation provisions a stack in each of the specified
             accounts and regions by using the supplied AWS CloudFormation template and parameters.
             Stack sets let you manage a common set of AWS resources in a selection of accounts
             and regions in a single operation.
             </para>
              
             <para>
             Actions
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html">CreateStackInstances</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackSet.html">CreateStackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteStackInstances.html">DeleteStackInstances</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteStackSet.html">DeleteStackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackInstance.html">DescribeStackInstance</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackSet.html">DescribeStackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackSetOperation.html">DescribeStackSetOperation</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackInstances.html">ListStackInstances</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetOperationResults">ListStackSetOperationResults</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetOperations">ListStackSetOperations</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSets">ListStackSets</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StopStackSetOperation.html">StopStackSetOperation</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">UpdateStackSet</a>
             
             </para>
              </li> </ul>
             <para>
             Data Types
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackInstance.html.html">StackInstance</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackInstanceSummary.html.html">StackInstanceSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSet.html">StackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperation.html.html">StackSetOperation</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperationPreferences.html.html">StackSetOperationPreferences</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperationResultSummary.html.html">StackSetOperationResultSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperationSummary.html.html">StackSetOperationSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetSummary.html">StackSetSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Tag.html">Tag</a>
             
             </para>
              </li> </ul>
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor">
             <summary>
             Constructs AmazonCloudFormationClient with the credentials loaded from the application's
             default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
             
             Example App.config with credentials set.
             <code>
             &lt;?xml version="1.0" encoding="utf-8" ?&gt;
             &lt;configuration&gt;
                 &lt;appSettings&gt;
                     &lt;add key="AWSProfileName" value="AWS Default"/&gt;
                 &lt;/appSettings&gt;
             &lt;/configuration&gt;
             </code>
            
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(Amazon.RegionEndpoint)">
             <summary>
             Constructs AmazonCloudFormationClient with the credentials loaded from the application's
             default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
             
             Example App.config with credentials set.
             <code>
             &lt;?xml version="1.0" encoding="utf-8" ?&gt;
             &lt;configuration&gt;
                 &lt;appSettings&gt;
                     &lt;add key="AWSProfileName" value="AWS Default"/&gt;
                 &lt;/appSettings&gt;
             &lt;/configuration&gt;
             </code>
            
             </summary>
             <param name="region">The region to connect.</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(Amazon.CloudFormation.AmazonCloudFormationConfig)">
             <summary>
             Constructs AmazonCloudFormationClient with the credentials loaded from the application's
             default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
             
             Example App.config with credentials set.
             <code>
             &lt;?xml version="1.0" encoding="utf-8" ?&gt;
             &lt;configuration&gt;
                 &lt;appSettings&gt;
                     &lt;add key="AWSProfileName" value="AWS Default"/&gt;
                 &lt;/appSettings&gt;
             &lt;/configuration&gt;
             </code>
            
             </summary>
             <param name="config">The AmazonCloudFormationClient Configuration Object</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(Amazon.Runtime.AWSCredentials)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Credentials
            </summary>
            <param name="credentials">AWS Credentials</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(Amazon.Runtime.AWSCredentials,Amazon.RegionEndpoint)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Credentials
            </summary>
            <param name="credentials">AWS Credentials</param>
            <param name="region">The region to connect.</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(Amazon.Runtime.AWSCredentials,Amazon.CloudFormation.AmazonCloudFormationConfig)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Credentials and an
            AmazonCloudFormationClient Configuration object.
            </summary>
            <param name="credentials">AWS Credentials</param>
            <param name="clientConfig">The AmazonCloudFormationClient Configuration Object</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Access Key ID and AWS Secret Key
            </summary>
            <param name="awsAccessKeyId">AWS Access Key ID</param>
            <param name="awsSecretAccessKey">AWS Secret Access Key</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String,Amazon.RegionEndpoint)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Access Key ID and AWS Secret Key
            </summary>
            <param name="awsAccessKeyId">AWS Access Key ID</param>
            <param name="awsSecretAccessKey">AWS Secret Access Key</param>
            <param name="region">The region to connect.</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String,Amazon.CloudFormation.AmazonCloudFormationConfig)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Access Key ID, AWS Secret Key and an
            AmazonCloudFormationClient Configuration object.
            </summary>
            <param name="awsAccessKeyId">AWS Access Key ID</param>
            <param name="awsSecretAccessKey">AWS Secret Access Key</param>
            <param name="clientConfig">The AmazonCloudFormationClient Configuration Object</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String,System.String)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Access Key ID and AWS Secret Key
            </summary>
            <param name="awsAccessKeyId">AWS Access Key ID</param>
            <param name="awsSecretAccessKey">AWS Secret Access Key</param>
            <param name="awsSessionToken">AWS Session Token</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String,System.String,Amazon.RegionEndpoint)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Access Key ID and AWS Secret Key
            </summary>
            <param name="awsAccessKeyId">AWS Access Key ID</param>
            <param name="awsSecretAccessKey">AWS Secret Access Key</param>
            <param name="awsSessionToken">AWS Session Token</param>
            <param name="region">The region to connect.</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String,System.String,Amazon.CloudFormation.AmazonCloudFormationConfig)">
            <summary>
            Constructs AmazonCloudFormationClient with AWS Access Key ID, AWS Secret Key and an
            AmazonCloudFormationClient Configuration object.
            </summary>
            <param name="awsAccessKeyId">AWS Access Key ID</param>
            <param name="awsSecretAccessKey">AWS Secret Access Key</param>
            <param name="awsSessionToken">AWS Session Token</param>
            <param name="clientConfig">The AmazonCloudFormationClient Configuration Object</param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateSigner">
            <summary>
            Creates the signer for the service.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CustomizeRuntimePipeline(Amazon.Runtime.Internal.RuntimePipeline)">
            <summary>
            Customize the pipeline
            </summary>
            <param name="pipeline"></param>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.Dispose(System.Boolean)">
            <summary>
            Disposes the service client.
            </summary>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CancelUpdateStack(Amazon.CloudFormation.Model.CancelUpdateStackRequest)">
            <summary>
            Cancels an update on the specified stack. If the call completes successfully, the
            stack rolls back the update and reverts to the previous stack configuration.
            
             <note>
            <para>
            You can cancel only stacks that are in the UPDATE_IN_PROGRESS state.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the CancelUpdateStack service method.</param>
            
            <returns>The response from the CancelUpdateStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CancelUpdateStack">REST API Reference for CancelUpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CancelUpdateStackAsync(Amazon.CloudFormation.Model.CancelUpdateStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CancelUpdateStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CancelUpdateStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CancelUpdateStack">REST API Reference for CancelUpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ContinueUpdateRollback(Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest)">
            <summary>
            For a specified stack that is in the <code>UPDATE_ROLLBACK_FAILED</code> state, continues
            rolling it back to the <code>UPDATE_ROLLBACK_COMPLETE</code> state. Depending on the
            cause of the failure, you can manually <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed">
            fix the error</a> and continue the rollback. By continuing the rollback, you can return
            your stack to a working state (the <code>UPDATE_ROLLBACK_COMPLETE</code> state), and
            then try to update the stack again.
            
             
            <para>
            A stack goes into the <code>UPDATE_ROLLBACK_FAILED</code> state when AWS CloudFormation
            cannot roll back all changes after a failed stack update. For example, you might have
            a stack that is rolling back to an old database instance that was deleted outside
            of AWS CloudFormation. Because AWS CloudFormation doesn't know the database was deleted,
            it assumes that the database instance still exists and attempts to roll back to it,
            causing the update rollback to fail.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ContinueUpdateRollback service method.</param>
            
            <returns>The response from the ContinueUpdateRollback service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ContinueUpdateRollback">REST API Reference for ContinueUpdateRollback Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ContinueUpdateRollbackAsync(Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ContinueUpdateRollback operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ContinueUpdateRollback operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ContinueUpdateRollback">REST API Reference for ContinueUpdateRollback Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateChangeSet(Amazon.CloudFormation.Model.CreateChangeSetRequest)">
            <summary>
            Creates a list of changes that will be applied to a stack so that you can review the
            changes before executing them. You can create a change set for a stack that doesn't
            exist or an existing stack. If you create a change set for a stack that doesn't exist,
            the change set shows all of the resources that AWS CloudFormation will create. If
            you create a change set for an existing stack, AWS CloudFormation compares the stack's
            information with the information that you submit in the change set and lists the differences.
            Use change sets to understand which resources AWS CloudFormation will create or change,
            and how it will change resources in an existing stack, before you create or update
            a stack.
            
             
            <para>
            To create a change set for a stack that doesn't exist, for the <code>ChangeSetType</code>
            parameter, specify <code>CREATE</code>. To create a change set for an existing stack,
            specify <code>UPDATE</code> for the <code>ChangeSetType</code> parameter. After the
            <code>CreateChangeSet</code> call successfully completes, AWS CloudFormation starts
            creating the change set. To check the status of the change set or to review it, use
            the <a>DescribeChangeSet</a> action.
            </para>
             
            <para>
            When you are satisfied with the changes the change set will make, execute the change
            set by using the <a>ExecuteChangeSet</a> action. AWS CloudFormation doesn't make changes
            until you execute the change set.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateChangeSet service method.</param>
            
            <returns>The response from the CreateChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.AlreadyExistsException">
            The resource with the name requested already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">REST API Reference for CreateChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateChangeSetAsync(Amazon.CloudFormation.Model.CreateChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">REST API Reference for CreateChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateStack(Amazon.CloudFormation.Model.CreateStackRequest)">
            <summary>
            Creates a stack as specified in the template. After the call completes successfully,
            the stack creation starts. You can check the status of the stack via the <a>DescribeStacks</a>
            API.
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateStack service method.</param>
            
            <returns>The response from the CreateStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.AlreadyExistsException">
            The resource with the name requested already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStack">REST API Reference for CreateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateStackAsync(Amazon.CloudFormation.Model.CreateStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStack">REST API Reference for CreateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateStackInstances(Amazon.CloudFormation.Model.CreateStackInstancesRequest)">
            <summary>
            Creates stack instances for the specified accounts, within the specified regions.
            A stack instance refers to a stack in a specific account and region. <code>Accounts</code>
            and <code>Regions</code> are required parameters—you must specify at least one account
            and one region.
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateStackInstances service method.</param>
            
            <returns>The response from the CreateStackInstances service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException">
            The specified operation ID already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StaleRequestException">
            Another operation has been performed on this stack set since the specified operation
            was performed.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInstances">REST API Reference for CreateStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateStackInstancesAsync(Amazon.CloudFormation.Model.CreateStackInstancesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateStackInstances operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateStackInstances operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInstances">REST API Reference for CreateStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateStackSet(Amazon.CloudFormation.Model.CreateStackSetRequest)">
            <summary>
            Creates a stack set.
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateStackSet service method.</param>
            
            <returns>The response from the CreateStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.CreatedButModifiedException">
            The specified resource exists, but has been changed.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.NameAlreadyExistsException">
            The specified name is already in use.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSet">REST API Reference for CreateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateStackSetAsync(Amazon.CloudFormation.Model.CreateStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSet">REST API Reference for CreateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteChangeSet(Amazon.CloudFormation.Model.DeleteChangeSetRequest)">
            <summary>
            Deletes the specified change set. Deleting change sets ensures that no one executes
            the wrong change set.
            
             
            <para>
            If the call successfully completes, AWS CloudFormation successfully deleted the change
            set.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteChangeSet service method.</param>
            
            <returns>The response from the DeleteChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidChangeSetStatusException">
            The specified change set can't be used to update the stack. For example, the change
            set status might be <code>CREATE_IN_PROGRESS</code>, or the stack status might be
            <code>UPDATE_IN_PROGRESS</code>.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteChangeSet">REST API Reference for DeleteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteChangeSetAsync(Amazon.CloudFormation.Model.DeleteChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteChangeSet">REST API Reference for DeleteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteStack(Amazon.CloudFormation.Model.DeleteStackRequest)">
            <summary>
            Deletes a specified stack. Once the call completes successfully, stack deletion starts.
            Deleted stacks do not show up in the <a>DescribeStacks</a> API if the deletion has
            been completed successfully.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteStack service method.</param>
            
            <returns>The response from the DeleteStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStack">REST API Reference for DeleteStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteStackAsync(Amazon.CloudFormation.Model.DeleteStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStack">REST API Reference for DeleteStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteStackInstances(Amazon.CloudFormation.Model.DeleteStackInstancesRequest)">
            <summary>
            Deletes stack instances for the specified accounts, in the specified regions.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteStackInstances service method.</param>
            
            <returns>The response from the DeleteStackInstances service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException">
            The specified operation ID already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StaleRequestException">
            Another operation has been performed on this stack set since the specified operation
            was performed.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInstances">REST API Reference for DeleteStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteStackInstancesAsync(Amazon.CloudFormation.Model.DeleteStackInstancesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteStackInstances operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteStackInstances operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInstances">REST API Reference for DeleteStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteStackSet(Amazon.CloudFormation.Model.DeleteStackSetRequest)">
            <summary>
            Deletes a stack set. Before you can delete a stack set, all of its member stack instances
            must be deleted. For more information about how to do this, see <a>DeleteStackInstances</a>.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteStackSet service method.</param>
            
            <returns>The response from the DeleteStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotEmptyException">
            You can't yet delete this stack set, because it still contains one or more stack instances.
            Delete all stack instances from the stack set before deleting the stack set.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackSet">REST API Reference for DeleteStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteStackSetAsync(Amazon.CloudFormation.Model.DeleteStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackSet">REST API Reference for DeleteStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeAccountLimits(Amazon.CloudFormation.Model.DescribeAccountLimitsRequest)">
            <summary>
            Retrieves your account's AWS CloudFormation limits, such as the maximum number of
            stacks that you can create in your account.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeAccountLimits service method.</param>
            
            <returns>The response from the DescribeAccountLimits service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeAccountLimits">REST API Reference for DescribeAccountLimits Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeAccountLimitsAsync(Amazon.CloudFormation.Model.DescribeAccountLimitsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeAccountLimits operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeAccountLimits operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeAccountLimits">REST API Reference for DescribeAccountLimits Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeChangeSet(Amazon.CloudFormation.Model.DescribeChangeSetRequest)">
            <summary>
            Returns the inputs for the change set and a list of changes that AWS CloudFormation
            will make if you execute the change set. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html">Updating
            Stacks Using Change Sets</a> in the AWS CloudFormation User Guide.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeChangeSet service method.</param>
            
            <returns>The response from the DescribeChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.ChangeSetNotFoundException">
            The specified change set name or ID doesn't exit. To view valid change sets for a
            stack, use the <code>ListChangeSets</code> action.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet">REST API Reference for DescribeChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeChangeSetAsync(Amazon.CloudFormation.Model.DescribeChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet">REST API Reference for DescribeChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackEvents(Amazon.CloudFormation.Model.DescribeStackEventsRequest)">
            <summary>
            Returns all stack related events for a specified stack in reverse chronological order.
            For more information about a stack's event history, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/concept-stack.html">Stacks</a>
            in the AWS CloudFormation User Guide.
            
             <note>
            <para>
            You can list events for stacks that have failed to create or have been deleted by
            specifying the unique stack identifier (stack ID).
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackEvents service method.</param>
            
            <returns>The response from the DescribeStackEvents service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackEvents">REST API Reference for DescribeStackEvents Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackEventsAsync(Amazon.CloudFormation.Model.DescribeStackEventsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackEvents operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackEvents operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackEvents">REST API Reference for DescribeStackEvents Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackInstance(Amazon.CloudFormation.Model.DescribeStackInstanceRequest)">
            <summary>
            Returns the stack instance that's associated with the specified stack set, AWS account,
            and region.
            
             
            <para>
            For a list of stack instances that are associated with a specific stack set, use <a>ListStackInstances</a>.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackInstance service method.</param>
            
            <returns>The response from the DescribeStackInstance service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackInstanceNotFoundException">
            The specified stack instance doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstance">REST API Reference for DescribeStackInstance Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackInstanceAsync(Amazon.CloudFormation.Model.DescribeStackInstanceRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackInstance operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackInstance operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstance">REST API Reference for DescribeStackInstance Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackResource(Amazon.CloudFormation.Model.DescribeStackResourceRequest)">
            <summary>
            Returns a description of the specified resource in the specified stack.
            
             
            <para>
            For deleted stacks, DescribeStackResource returns resource information for up to 90
            days after the stack has been deleted.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackResource service method.</param>
            
            <returns>The response from the DescribeStackResource service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResource">REST API Reference for DescribeStackResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackResourceAsync(Amazon.CloudFormation.Model.DescribeStackResourceRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackResource operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackResource operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResource">REST API Reference for DescribeStackResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackResources(Amazon.CloudFormation.Model.DescribeStackResourcesRequest)">
            <summary>
            Returns AWS resource descriptions for running and deleted stacks. If <code>StackName</code>
            is specified, all the associated resources that are part of the stack are returned.
            If <code>PhysicalResourceId</code> is specified, the associated resources of the stack
            that the resource belongs to are returned.
            
             <note>
            <para>
            Only the first 100 resources will be returned. If your stack has more resources than
            this, you should use <code>ListStackResources</code> instead.
            </para>
             </note>
            <para>
            For deleted stacks, <code>DescribeStackResources</code> returns resource information
            for up to 90 days after the stack has been deleted.
            </para>
             
            <para>
            You must specify either <code>StackName</code> or <code>PhysicalResourceId</code>,
            but not both. In addition, you can specify <code>LogicalResourceId</code> to filter
            the returned result. For more information about resources, the <code>LogicalResourceId</code>
            and <code>PhysicalResourceId</code>, go to the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/">AWS
            CloudFormation User Guide</a>.
            </para>
             <note>
            <para>
            A <code>ValidationError</code> is returned if you specify both <code>StackName</code>
            and <code>PhysicalResourceId</code> in the same request.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackResources service method.</param>
            
            <returns>The response from the DescribeStackResources service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResources">REST API Reference for DescribeStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackResourcesAsync(Amazon.CloudFormation.Model.DescribeStackResourcesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackResources operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackResources operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResources">REST API Reference for DescribeStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStacks">
            <summary>
            Returns the description for the specified stack; if no stack name was specified, then
            it returns the description for all the stacks created.
            
             <note>
            <para>
            If the stack does not exist, an <code>AmazonCloudFormationException</code> is returned.
            </para>
             </note>
            </summary>
            
            <returns>The response from the DescribeStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStacks(Amazon.CloudFormation.Model.DescribeStacksRequest)">
            <summary>
            Returns the description for the specified stack; if no stack name was specified, then
            it returns the description for all the stacks created.
            
             <note>
            <para>
            If the stack does not exist, an <code>AmazonCloudFormationException</code> is returned.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStacks service method.</param>
            
            <returns>The response from the DescribeStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStacksAsync(System.Threading.CancellationToken)">
            <summary>
            Returns the description for the specified stack; if no stack name was specified, then
            it returns the description for all the stacks created.
            
             <note>
            <para>
            If the stack does not exist, an <code>AmazonCloudFormationException</code> is returned.
            </para>
             </note>
            </summary>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            
            <returns>The response from the DescribeStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStacksAsync(Amazon.CloudFormation.Model.DescribeStacksRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStacks operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStacks operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackSet(Amazon.CloudFormation.Model.DescribeStackSetRequest)">
            <summary>
            Returns the description of the specified stack set.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackSet service method.</param>
            
            <returns>The response from the DescribeStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet">REST API Reference for DescribeStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackSetAsync(Amazon.CloudFormation.Model.DescribeStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet">REST API Reference for DescribeStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackSetOperation(Amazon.CloudFormation.Model.DescribeStackSetOperationRequest)">
            <summary>
            Returns the description of the specified stack set operation.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackSetOperation service method.</param>
            
            <returns>The response from the DescribeStackSetOperation service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.OperationNotFoundException">
            The specified ID refers to an operation that doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSetOperation">REST API Reference for DescribeStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackSetOperationAsync(Amazon.CloudFormation.Model.DescribeStackSetOperationRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackSetOperation operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackSetOperation operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSetOperation">REST API Reference for DescribeStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.EstimateTemplateCost(Amazon.CloudFormation.Model.EstimateTemplateCostRequest)">
            <summary>
            Returns the estimated monthly cost of a template. The return value is an AWS Simple
            Monthly Calculator URL with a query string that describes the resources required to
            run the template.
            </summary>
            <param name="request">Container for the necessary parameters to execute the EstimateTemplateCost service method.</param>
            
            <returns>The response from the EstimateTemplateCost service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/EstimateTemplateCost">REST API Reference for EstimateTemplateCost Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.EstimateTemplateCostAsync(Amazon.CloudFormation.Model.EstimateTemplateCostRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the EstimateTemplateCost operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the EstimateTemplateCost operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/EstimateTemplateCost">REST API Reference for EstimateTemplateCost Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ExecuteChangeSet(Amazon.CloudFormation.Model.ExecuteChangeSetRequest)">
            <summary>
            Updates a stack using the input information that was provided when the specified change
            set was created. After the call successfully completes, AWS CloudFormation starts
            updating the stack. Use the <a>DescribeStacks</a> action to view the status of the
            update.
            
             
            <para>
            When you execute a change set, AWS CloudFormation deletes all other change sets associated
            with the stack because they aren't valid for the updated stack.
            </para>
             
            <para>
            If a stack policy is associated with the stack, AWS CloudFormation enforces the policy
            during the update. You can't specify a temporary stack policy that overrides the current
            policy.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ExecuteChangeSet service method.</param>
            
            <returns>The response from the ExecuteChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.ChangeSetNotFoundException">
            The specified change set name or ID doesn't exit. To view valid change sets for a
            stack, use the <code>ListChangeSets</code> action.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidChangeSetStatusException">
            The specified change set can't be used to update the stack. For example, the change
            set status might be <code>CREATE_IN_PROGRESS</code>, or the stack status might be
            <code>UPDATE_IN_PROGRESS</code>.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ExecuteChangeSet">REST API Reference for ExecuteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ExecuteChangeSetAsync(Amazon.CloudFormation.Model.ExecuteChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ExecuteChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ExecuteChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ExecuteChangeSet">REST API Reference for ExecuteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.GetStackPolicy(Amazon.CloudFormation.Model.GetStackPolicyRequest)">
            <summary>
            Returns the stack policy for a specified stack. If a stack doesn't have a policy,
            a null value is returned.
            </summary>
            <param name="request">Container for the necessary parameters to execute the GetStackPolicy service method.</param>
            
            <returns>The response from the GetStackPolicy service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetStackPolicy">REST API Reference for GetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.GetStackPolicyAsync(Amazon.CloudFormation.Model.GetStackPolicyRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the GetStackPolicy operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the GetStackPolicy operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetStackPolicy">REST API Reference for GetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.GetTemplate(Amazon.CloudFormation.Model.GetTemplateRequest)">
            <summary>
            Returns the template body for a specified stack. You can get the template for running
            or deleted stacks.
            
             
            <para>
            For deleted stacks, GetTemplate returns the template for up to 90 days after the stack
            has been deleted.
            </para>
             <note>
            <para>
             If the template does not exist, a <code>ValidationError</code> is returned.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the GetTemplate service method.</param>
            
            <returns>The response from the GetTemplate service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.ChangeSetNotFoundException">
            The specified change set name or ID doesn't exit. To view valid change sets for a
            stack, use the <code>ListChangeSets</code> action.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplate">REST API Reference for GetTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.GetTemplateAsync(Amazon.CloudFormation.Model.GetTemplateRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the GetTemplate operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the GetTemplate operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplate">REST API Reference for GetTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.GetTemplateSummary(Amazon.CloudFormation.Model.GetTemplateSummaryRequest)">
            <summary>
            Returns information about a new or existing template. The <code>GetTemplateSummary</code>
            action is useful for viewing parameter information, such as default parameter values
            and parameter types, before you create or update a stack.
            
             
            <para>
            You can use the <code>GetTemplateSummary</code> action when you submit a template,
            or you can get template information for a running or deleted stack.
            </para>
             
            <para>
            For deleted stacks, <code>GetTemplateSummary</code> returns the template information
            for up to 90 days after the stack has been deleted. If the template does not exist,
            a <code>ValidationError</code> is returned.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the GetTemplateSummary service method.</param>
            
            <returns>The response from the GetTemplateSummary service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummary">REST API Reference for GetTemplateSummary Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.GetTemplateSummaryAsync(Amazon.CloudFormation.Model.GetTemplateSummaryRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the GetTemplateSummary operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the GetTemplateSummary operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummary">REST API Reference for GetTemplateSummary Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListChangeSets(Amazon.CloudFormation.Model.ListChangeSetsRequest)">
            <summary>
            Returns the ID and status of each active change set for a stack. For example, AWS
            CloudFormation lists change sets that are in the <code>CREATE_IN_PROGRESS</code> or
            <code>CREATE_PENDING</code> state.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListChangeSets service method.</param>
            
            <returns>The response from the ListChangeSets service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets">REST API Reference for ListChangeSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListChangeSetsAsync(Amazon.CloudFormation.Model.ListChangeSetsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListChangeSets operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListChangeSets operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets">REST API Reference for ListChangeSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListExports(Amazon.CloudFormation.Model.ListExportsRequest)">
            <summary>
            Lists all exported output values in the account and region in which you call this
            action. Use this action to see the exported output values that you can import into
            other stacks. To import values, use the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html">
            <code>Fn::ImportValue</code> </a> function.
            
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html">
            AWS CloudFormation Export Stack Output Values</a>.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListExports service method.</param>
            
            <returns>The response from the ListExports service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListExports">REST API Reference for ListExports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListExportsAsync(Amazon.CloudFormation.Model.ListExportsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListExports operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListExports operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListExports">REST API Reference for ListExports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListImports(Amazon.CloudFormation.Model.ListImportsRequest)">
            <summary>
            Lists all stacks that are importing an exported output value. To modify or remove
            an exported output value, first use this action to see which stacks are using it.
            To see the exported output values in your account, see <a>ListExports</a>.
            
             
            <para>
            For more information about importing an exported output value, see the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html">
            <code>Fn::ImportValue</code> </a> function.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListImports service method.</param>
            
            <returns>The response from the ListImports service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListImports">REST API Reference for ListImports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListImportsAsync(Amazon.CloudFormation.Model.ListImportsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListImports operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListImports operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListImports">REST API Reference for ListImports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackInstances(Amazon.CloudFormation.Model.ListStackInstancesRequest)">
            <summary>
            Returns summary information about stack instances that are associated with the specified
            stack set. You can filter for stack instances that are associated with a specific
            AWS account name or region.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackInstances service method.</param>
            
            <returns>The response from the ListStackInstances service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstances">REST API Reference for ListStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackInstancesAsync(Amazon.CloudFormation.Model.ListStackInstancesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackInstances operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackInstances operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstances">REST API Reference for ListStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackResources(Amazon.CloudFormation.Model.ListStackResourcesRequest)">
            <summary>
            Returns descriptions of all resources of the specified stack.
            
             
            <para>
            For deleted stacks, ListStackResources returns resource information for up to 90 days
            after the stack has been deleted.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackResources service method.</param>
            
            <returns>The response from the ListStackResources service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackResources">REST API Reference for ListStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackResourcesAsync(Amazon.CloudFormation.Model.ListStackResourcesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackResources operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackResources operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackResources">REST API Reference for ListStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStacks">
            <summary>
            Returns the summary information for stacks whose status matches the specified StackStatusFilter.
            Summary information for stacks that have been deleted is kept for 90 days after the
            stack is deleted. If no StackStatusFilter is specified, summary information for all
            stacks is returned (including existing stacks and stacks that have been deleted).
            </summary>
            
            <returns>The response from the ListStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStacks(Amazon.CloudFormation.Model.ListStacksRequest)">
            <summary>
            Returns the summary information for stacks whose status matches the specified StackStatusFilter.
            Summary information for stacks that have been deleted is kept for 90 days after the
            stack is deleted. If no StackStatusFilter is specified, summary information for all
            stacks is returned (including existing stacks and stacks that have been deleted).
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStacks service method.</param>
            
            <returns>The response from the ListStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStacksAsync(System.Threading.CancellationToken)">
            <summary>
            Returns the summary information for stacks whose status matches the specified StackStatusFilter.
            Summary information for stacks that have been deleted is kept for 90 days after the
            stack is deleted. If no StackStatusFilter is specified, summary information for all
            stacks is returned (including existing stacks and stacks that have been deleted).
            </summary>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            
            <returns>The response from the ListStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStacksAsync(Amazon.CloudFormation.Model.ListStacksRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStacks operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStacks operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackSetOperationResults(Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest)">
            <summary>
            Returns summary information about the results of a stack set operation.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperationResults service method.</param>
            
            <returns>The response from the ListStackSetOperationResults service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.OperationNotFoundException">
            The specified ID refers to an operation that doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperationResults">REST API Reference for ListStackSetOperationResults Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackSetOperationResultsAsync(Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackSetOperationResults operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperationResults operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperationResults">REST API Reference for ListStackSetOperationResults Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackSetOperations(Amazon.CloudFormation.Model.ListStackSetOperationsRequest)">
            <summary>
            Returns summary information about operations performed on a stack set.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperations service method.</param>
            
            <returns>The response from the ListStackSetOperations service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperations">REST API Reference for ListStackSetOperations Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackSetOperationsAsync(Amazon.CloudFormation.Model.ListStackSetOperationsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackSetOperations operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperations operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperations">REST API Reference for ListStackSetOperations Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackSets(Amazon.CloudFormation.Model.ListStackSetsRequest)">
            <summary>
            Returns summary information about stack sets that are associated with the user.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackSets service method.</param>
            
            <returns>The response from the ListStackSets service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets">REST API Reference for ListStackSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackSetsAsync(Amazon.CloudFormation.Model.ListStackSetsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackSets operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackSets operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets">REST API Reference for ListStackSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.SetStackPolicy(Amazon.CloudFormation.Model.SetStackPolicyRequest)">
            <summary>
            Sets a stack policy for a specified stack.
            </summary>
            <param name="request">Container for the necessary parameters to execute the SetStackPolicy service method.</param>
            
            <returns>The response from the SetStackPolicy service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetStackPolicy">REST API Reference for SetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.SetStackPolicyAsync(Amazon.CloudFormation.Model.SetStackPolicyRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the SetStackPolicy operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the SetStackPolicy operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetStackPolicy">REST API Reference for SetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.SignalResource(Amazon.CloudFormation.Model.SignalResourceRequest)">
            <summary>
            Sends a signal to the specified resource with a success or failure status. You can
            use the SignalResource API in conjunction with a creation policy or update policy.
            AWS CloudFormation doesn't proceed with a stack creation or update until resources
            receive the required number of signals or the timeout period is exceeded. The SignalResource
            API is useful in cases where you want to send signals from anywhere other than an
            Amazon EC2 instance.
            </summary>
            <param name="request">Container for the necessary parameters to execute the SignalResource service method.</param>
            
            <returns>The response from the SignalResource service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SignalResource">REST API Reference for SignalResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.SignalResourceAsync(Amazon.CloudFormation.Model.SignalResourceRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the SignalResource operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the SignalResource operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SignalResource">REST API Reference for SignalResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.StopStackSetOperation(Amazon.CloudFormation.Model.StopStackSetOperationRequest)">
            <summary>
            Stops an in-progress operation on a stack set and its associated stack instances.
            </summary>
            <param name="request">Container for the necessary parameters to execute the StopStackSetOperation service method.</param>
            
            <returns>The response from the StopStackSetOperation service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationNotFoundException">
            The specified ID refers to an operation that doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StopStackSetOperation">REST API Reference for StopStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.StopStackSetOperationAsync(Amazon.CloudFormation.Model.StopStackSetOperationRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the StopStackSetOperation operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the StopStackSetOperation operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StopStackSetOperation">REST API Reference for StopStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.UpdateStack(Amazon.CloudFormation.Model.UpdateStackRequest)">
            <summary>
            Updates a stack as specified in the template. After the call completes successfully,
            the stack update starts. You can check the status of the stack via the <a>DescribeStacks</a>
            action.
            
             
            <para>
            To get a copy of the template for an existing stack, you can use the <a>GetTemplate</a>
            action.
            </para>
             
            <para>
            For more information about creating an update template, updating a stack, and monitoring
            the progress of the update, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html">Updating
            a Stack</a>.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the UpdateStack service method.</param>
            
            <returns>The response from the UpdateStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStack">REST API Reference for UpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.UpdateStackAsync(Amazon.CloudFormation.Model.UpdateStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the UpdateStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the UpdateStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStack">REST API Reference for UpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.UpdateStackSet(Amazon.CloudFormation.Model.UpdateStackSetRequest)">
            <summary>
            Updates the stack set and <i>all</i> associated stack instances.
            
             
            <para>
            Even if the stack set operation created by updating the stack set fails (completely
            or partially, below or above a specified failure tolerance), the stack set is updated
            with your changes. Subsequent <a>CreateStackInstances</a> calls on the specified stack
            set use the updated stack set.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the UpdateStackSet service method.</param>
            
            <returns>The response from the UpdateStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException">
            The specified operation ID already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StaleRequestException">
            Another operation has been performed on this stack set since the specified operation
            was performed.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSet">REST API Reference for UpdateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.UpdateStackSetAsync(Amazon.CloudFormation.Model.UpdateStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the UpdateStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the UpdateStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSet">REST API Reference for UpdateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ValidateTemplate">
            <summary>
            Validates a specified template. AWS CloudFormation first checks if the template is
            valid JSON. If it isn't, AWS CloudFormation checks if the template is valid YAML.
            If both these checks fail, AWS CloudFormation returns a template validation error.
            </summary>
            
            <returns>The response from the ValidateTemplate service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ValidateTemplate(Amazon.CloudFormation.Model.ValidateTemplateRequest)">
            <summary>
            Validates a specified template. AWS CloudFormation first checks if the template is
            valid JSON. If it isn't, AWS CloudFormation checks if the template is valid YAML.
            If both these checks fail, AWS CloudFormation returns a template validation error.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ValidateTemplate service method.</param>
            
            <returns>The response from the ValidateTemplate service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ValidateTemplateAsync(System.Threading.CancellationToken)">
            <summary>
            Validates a specified template. AWS CloudFormation first checks if the template is
            valid JSON. If it isn't, AWS CloudFormation checks if the template is valid YAML.
            If both these checks fail, AWS CloudFormation returns a template validation error.
            </summary>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            
            <returns>The response from the ValidateTemplate service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ValidateTemplateAsync(Amazon.CloudFormation.Model.ValidateTemplateRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ValidateTemplate operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ValidateTemplate operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
        <member name="T:Amazon.CloudFormation.IAmazonCloudFormation">
             <summary>
             Interface for accessing CloudFormation
            
             AWS CloudFormation
             <para>
             AWS CloudFormation allows you to create and manage AWS infrastructure deployments
             predictably and repeatedly. You can use AWS CloudFormation to leverage AWS products,
             such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification
             Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly
             scalable, cost-effective applications without creating or configuring the underlying
             AWS infrastructure.
             </para>
              
             <para>
             With AWS CloudFormation, you declare all of your resources and dependencies in a template
             file. The template defines a collection of resources as a single unit called a stack.
             AWS CloudFormation creates and deletes all member resources of the stack together
             and manages all dependencies between the resources for you.
             </para>
              
             <para>
             For more information about AWS CloudFormation, see the <a href="http://aws.amazon.com/cloudformation/">AWS
             CloudFormation Product Page</a>.
             </para>
              
             <para>
             Amazon CloudFormation makes use of other AWS products. If you need additional technical
             information about a specific AWS product, you can find the product's technical documentation
             at <a href="http://docs.aws.amazon.com/">docs.aws.amazon.com</a>.
             </para>
              
             <para>
              <i>APIs for stacks </i>
             </para>
              
             <para>
             When you use AWS CloudFormation, you manage related resources as a single unit called
             a stack. You create, update, and delete a collection of resources by creating, updating,
             and deleting stacks. All the resources in a stack are defined by the stack's AWS CloudFormation
             template.
             </para>
              
             <para>
             Actions
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CancelUpdateStack.html">CancelUpdateStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ContinueUpdateRollback.html">ContinueUpdateRollback</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStack.html">CreateStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteStack.html">DeleteStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackEvents.html">DescribeStackEvents</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackResource.html">DescribeStackResource</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackResources.html">DescribeStackResources</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStacks.html">DescribeStacks</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_EstimateTemplateCost.html">EstimateTemplateCost</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_GetStackPolicy.html">GetStackPolicy</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_GetTemplate.html">GetTemplate</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_GetTemplateSummary.html">GetTemplateSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListExports.html">ListExports</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListImports.html">ListImports</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackResources.html">ListStackResources</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStacks.html">ListStacks</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetStackPolicy.html">SetStackPolicy</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStack.html">UpdateStack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ValidateTemplate.html">ValidateTemplate</a>
             
             </para>
              </li> </ul>
             <para>
             Data Types
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Export.html">Export</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ParameterConstraints.html">ParameterConstraints</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ParameterDeclaration.html">ParameterDeclaration</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Stack.html">Stack</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackEvent.html">StackEvent</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackResource.html">StackResource</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackResourceDetail.html">StackResourceDetail</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackResourceSummary.html">StackResourceSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSummary.html">StackSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Tag.html">Tag</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_TemplateParameter.html">TemplateParameter</a>
             
             </para>
              </li> </ul>
             <para>
              <i>APIs for change sets</i>
             </para>
              
             <para>
             If you need to make changes to the running resources in a stack, you update the stack.
             Before making changes to your resources, you can generate a change set, which is summary
             of your proposed changes. Change sets allow you to see how your changes might impact
             your running resources, especially for critical resources, before implementing them.
             </para>
              
             <para>
             Actions
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateChangeSet.html">CreateChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteChangeSet.html">DeleteChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeChangeSet.html">DescribeChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html">ExecuteChangeSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListChangeSets.html">ListChangeSets</a>
             
             </para>
              </li> </ul>
             <para>
             Data Types
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Change.html">Change</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ChangeSetSummary.html">ChangeSetSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ResourceChange.html">ResourceChange</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ResourceChangeDetail.html">ResourceChangeDetail</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ResourceTargetDefinition.html">ResourceTargetDefinition</a>
             
             </para>
              </li> </ul>
             <para>
              <i>APIs for stack sets</i>
             </para>
              
             <para>
             AWS CloudFormation StackSets lets you create a collection, or stack set, of stacks
             that can automatically and safely provision a common set of AWS resources across multiple
             AWS accounts and multiple AWS regions from a single AWS CloudFormation template. When
             you create a stack set, AWS CloudFormation provisions a stack in each of the specified
             accounts and regions by using the supplied AWS CloudFormation template and parameters.
             Stack sets let you manage a common set of AWS resources in a selection of accounts
             and regions in a single operation.
             </para>
              
             <para>
             Actions
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackInstances.html">CreateStackInstances</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CreateStackSet.html">CreateStackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteStackInstances.html">DeleteStackInstances</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeleteStackSet.html">DeleteStackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackInstance.html">DescribeStackInstance</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackSet.html">DescribeStackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStackSetOperation.html">DescribeStackSetOperation</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackInstances.html">ListStackInstances</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetOperationResults">ListStackSetOperationResults</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSetOperations">ListStackSetOperations</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ListStackSets">ListStackSets</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StopStackSetOperation.html">StopStackSetOperation</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">UpdateStackSet</a>
             
             </para>
              </li> </ul>
             <para>
             Data Types
             </para>
              <ul> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackInstance.html.html">StackInstance</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackInstanceSummary.html.html">StackInstanceSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSet.html">StackSet</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperation.html.html">StackSetOperation</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperationPreferences.html.html">StackSetOperationPreferences</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperationResultSummary.html.html">StackSetOperationResultSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetOperationSummary.html.html">StackSetOperationSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_StackSetSummary.html">StackSetSummary</a>
             
             </para>
              </li> <li>
             <para>
              <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Tag.html">Tag</a>
             
             </para>
              </li> </ul>
             </summary>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CancelUpdateStack(Amazon.CloudFormation.Model.CancelUpdateStackRequest)">
            <summary>
            Cancels an update on the specified stack. If the call completes successfully, the
            stack rolls back the update and reverts to the previous stack configuration.
            
             <note>
            <para>
            You can cancel only stacks that are in the UPDATE_IN_PROGRESS state.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the CancelUpdateStack service method.</param>
            
            <returns>The response from the CancelUpdateStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CancelUpdateStack">REST API Reference for CancelUpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CancelUpdateStackAsync(Amazon.CloudFormation.Model.CancelUpdateStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CancelUpdateStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CancelUpdateStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CancelUpdateStack">REST API Reference for CancelUpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ContinueUpdateRollback(Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest)">
            <summary>
            For a specified stack that is in the <code>UPDATE_ROLLBACK_FAILED</code> state, continues
            rolling it back to the <code>UPDATE_ROLLBACK_COMPLETE</code> state. Depending on the
            cause of the failure, you can manually <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html#troubleshooting-errors-update-rollback-failed">
            fix the error</a> and continue the rollback. By continuing the rollback, you can return
            your stack to a working state (the <code>UPDATE_ROLLBACK_COMPLETE</code> state), and
            then try to update the stack again.
            
             
            <para>
            A stack goes into the <code>UPDATE_ROLLBACK_FAILED</code> state when AWS CloudFormation
            cannot roll back all changes after a failed stack update. For example, you might have
            a stack that is rolling back to an old database instance that was deleted outside
            of AWS CloudFormation. Because AWS CloudFormation doesn't know the database was deleted,
            it assumes that the database instance still exists and attempts to roll back to it,
            causing the update rollback to fail.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ContinueUpdateRollback service method.</param>
            
            <returns>The response from the ContinueUpdateRollback service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ContinueUpdateRollback">REST API Reference for ContinueUpdateRollback Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ContinueUpdateRollbackAsync(Amazon.CloudFormation.Model.ContinueUpdateRollbackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ContinueUpdateRollback operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ContinueUpdateRollback operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ContinueUpdateRollback">REST API Reference for ContinueUpdateRollback Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateChangeSet(Amazon.CloudFormation.Model.CreateChangeSetRequest)">
            <summary>
            Creates a list of changes that will be applied to a stack so that you can review the
            changes before executing them. You can create a change set for a stack that doesn't
            exist or an existing stack. If you create a change set for a stack that doesn't exist,
            the change set shows all of the resources that AWS CloudFormation will create. If
            you create a change set for an existing stack, AWS CloudFormation compares the stack's
            information with the information that you submit in the change set and lists the differences.
            Use change sets to understand which resources AWS CloudFormation will create or change,
            and how it will change resources in an existing stack, before you create or update
            a stack.
            
             
            <para>
            To create a change set for a stack that doesn't exist, for the <code>ChangeSetType</code>
            parameter, specify <code>CREATE</code>. To create a change set for an existing stack,
            specify <code>UPDATE</code> for the <code>ChangeSetType</code> parameter. After the
            <code>CreateChangeSet</code> call successfully completes, AWS CloudFormation starts
            creating the change set. To check the status of the change set or to review it, use
            the <a>DescribeChangeSet</a> action.
            </para>
             
            <para>
            When you are satisfied with the changes the change set will make, execute the change
            set by using the <a>ExecuteChangeSet</a> action. AWS CloudFormation doesn't make changes
            until you execute the change set.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateChangeSet service method.</param>
            
            <returns>The response from the CreateChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.AlreadyExistsException">
            The resource with the name requested already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">REST API Reference for CreateChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateChangeSetAsync(Amazon.CloudFormation.Model.CreateChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateChangeSet">REST API Reference for CreateChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateStack(Amazon.CloudFormation.Model.CreateStackRequest)">
            <summary>
            Creates a stack as specified in the template. After the call completes successfully,
            the stack creation starts. You can check the status of the stack via the <a>DescribeStacks</a>
            API.
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateStack service method.</param>
            
            <returns>The response from the CreateStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.AlreadyExistsException">
            The resource with the name requested already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStack">REST API Reference for CreateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateStackAsync(Amazon.CloudFormation.Model.CreateStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStack">REST API Reference for CreateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateStackInstances(Amazon.CloudFormation.Model.CreateStackInstancesRequest)">
            <summary>
            Creates stack instances for the specified accounts, within the specified regions.
            A stack instance refers to a stack in a specific account and region. <code>Accounts</code>
            and <code>Regions</code> are required parameters—you must specify at least one account
            and one region.
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateStackInstances service method.</param>
            
            <returns>The response from the CreateStackInstances service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException">
            The specified operation ID already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StaleRequestException">
            Another operation has been performed on this stack set since the specified operation
            was performed.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInstances">REST API Reference for CreateStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateStackInstancesAsync(Amazon.CloudFormation.Model.CreateStackInstancesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateStackInstances operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateStackInstances operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackInstances">REST API Reference for CreateStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateStackSet(Amazon.CloudFormation.Model.CreateStackSetRequest)">
            <summary>
            Creates a stack set.
            </summary>
            <param name="request">Container for the necessary parameters to execute the CreateStackSet service method.</param>
            
            <returns>The response from the CreateStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.CreatedButModifiedException">
            The specified resource exists, but has been changed.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException">
            The quota for the resource has already been reached.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.NameAlreadyExistsException">
            The specified name is already in use.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSet">REST API Reference for CreateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.CreateStackSetAsync(Amazon.CloudFormation.Model.CreateStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the CreateStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the CreateStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSet">REST API Reference for CreateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteChangeSet(Amazon.CloudFormation.Model.DeleteChangeSetRequest)">
            <summary>
            Deletes the specified change set. Deleting change sets ensures that no one executes
            the wrong change set.
            
             
            <para>
            If the call successfully completes, AWS CloudFormation successfully deleted the change
            set.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteChangeSet service method.</param>
            
            <returns>The response from the DeleteChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidChangeSetStatusException">
            The specified change set can't be used to update the stack. For example, the change
            set status might be <code>CREATE_IN_PROGRESS</code>, or the stack status might be
            <code>UPDATE_IN_PROGRESS</code>.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteChangeSet">REST API Reference for DeleteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteChangeSetAsync(Amazon.CloudFormation.Model.DeleteChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteChangeSet">REST API Reference for DeleteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteStack(Amazon.CloudFormation.Model.DeleteStackRequest)">
            <summary>
            Deletes a specified stack. Once the call completes successfully, stack deletion starts.
            Deleted stacks do not show up in the <a>DescribeStacks</a> API if the deletion has
            been completed successfully.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteStack service method.</param>
            
            <returns>The response from the DeleteStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStack">REST API Reference for DeleteStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteStackAsync(Amazon.CloudFormation.Model.DeleteStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStack">REST API Reference for DeleteStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteStackInstances(Amazon.CloudFormation.Model.DeleteStackInstancesRequest)">
            <summary>
            Deletes stack instances for the specified accounts, in the specified regions.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteStackInstances service method.</param>
            
            <returns>The response from the DeleteStackInstances service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException">
            The specified operation ID already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StaleRequestException">
            Another operation has been performed on this stack set since the specified operation
            was performed.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInstances">REST API Reference for DeleteStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteStackInstancesAsync(Amazon.CloudFormation.Model.DeleteStackInstancesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteStackInstances operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteStackInstances operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackInstances">REST API Reference for DeleteStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteStackSet(Amazon.CloudFormation.Model.DeleteStackSetRequest)">
            <summary>
            Deletes a stack set. Before you can delete a stack set, all of its member stack instances
            must be deleted. For more information about how to do this, see <a>DeleteStackInstances</a>.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DeleteStackSet service method.</param>
            
            <returns>The response from the DeleteStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotEmptyException">
            You can't yet delete this stack set, because it still contains one or more stack instances.
            Delete all stack instances from the stack set before deleting the stack set.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackSet">REST API Reference for DeleteStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DeleteStackSetAsync(Amazon.CloudFormation.Model.DeleteStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DeleteStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DeleteStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeleteStackSet">REST API Reference for DeleteStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeAccountLimits(Amazon.CloudFormation.Model.DescribeAccountLimitsRequest)">
            <summary>
            Retrieves your account's AWS CloudFormation limits, such as the maximum number of
            stacks that you can create in your account.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeAccountLimits service method.</param>
            
            <returns>The response from the DescribeAccountLimits service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeAccountLimits">REST API Reference for DescribeAccountLimits Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeAccountLimitsAsync(Amazon.CloudFormation.Model.DescribeAccountLimitsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeAccountLimits operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeAccountLimits operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeAccountLimits">REST API Reference for DescribeAccountLimits Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeChangeSet(Amazon.CloudFormation.Model.DescribeChangeSetRequest)">
            <summary>
            Returns the inputs for the change set and a list of changes that AWS CloudFormation
            will make if you execute the change set. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html">Updating
            Stacks Using Change Sets</a> in the AWS CloudFormation User Guide.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeChangeSet service method.</param>
            
            <returns>The response from the DescribeChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.ChangeSetNotFoundException">
            The specified change set name or ID doesn't exit. To view valid change sets for a
            stack, use the <code>ListChangeSets</code> action.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet">REST API Reference for DescribeChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeChangeSetAsync(Amazon.CloudFormation.Model.DescribeChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeChangeSet">REST API Reference for DescribeChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackEvents(Amazon.CloudFormation.Model.DescribeStackEventsRequest)">
            <summary>
            Returns all stack related events for a specified stack in reverse chronological order.
            For more information about a stack's event history, go to <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/concept-stack.html">Stacks</a>
            in the AWS CloudFormation User Guide.
            
             <note>
            <para>
            You can list events for stacks that have failed to create or have been deleted by
            specifying the unique stack identifier (stack ID).
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackEvents service method.</param>
            
            <returns>The response from the DescribeStackEvents service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackEvents">REST API Reference for DescribeStackEvents Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackEventsAsync(Amazon.CloudFormation.Model.DescribeStackEventsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackEvents operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackEvents operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackEvents">REST API Reference for DescribeStackEvents Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackInstance(Amazon.CloudFormation.Model.DescribeStackInstanceRequest)">
            <summary>
            Returns the stack instance that's associated with the specified stack set, AWS account,
            and region.
            
             
            <para>
            For a list of stack instances that are associated with a specific stack set, use <a>ListStackInstances</a>.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackInstance service method.</param>
            
            <returns>The response from the DescribeStackInstance service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackInstanceNotFoundException">
            The specified stack instance doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstance">REST API Reference for DescribeStackInstance Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackInstanceAsync(Amazon.CloudFormation.Model.DescribeStackInstanceRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackInstance operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackInstance operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackInstance">REST API Reference for DescribeStackInstance Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackResource(Amazon.CloudFormation.Model.DescribeStackResourceRequest)">
            <summary>
            Returns a description of the specified resource in the specified stack.
            
             
            <para>
            For deleted stacks, DescribeStackResource returns resource information for up to 90
            days after the stack has been deleted.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackResource service method.</param>
            
            <returns>The response from the DescribeStackResource service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResource">REST API Reference for DescribeStackResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackResourceAsync(Amazon.CloudFormation.Model.DescribeStackResourceRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackResource operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackResource operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResource">REST API Reference for DescribeStackResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackResources(Amazon.CloudFormation.Model.DescribeStackResourcesRequest)">
            <summary>
            Returns AWS resource descriptions for running and deleted stacks. If <code>StackName</code>
            is specified, all the associated resources that are part of the stack are returned.
            If <code>PhysicalResourceId</code> is specified, the associated resources of the stack
            that the resource belongs to are returned.
            
             <note>
            <para>
            Only the first 100 resources will be returned. If your stack has more resources than
            this, you should use <code>ListStackResources</code> instead.
            </para>
             </note>
            <para>
            For deleted stacks, <code>DescribeStackResources</code> returns resource information
            for up to 90 days after the stack has been deleted.
            </para>
             
            <para>
            You must specify either <code>StackName</code> or <code>PhysicalResourceId</code>,
            but not both. In addition, you can specify <code>LogicalResourceId</code> to filter
            the returned result. For more information about resources, the <code>LogicalResourceId</code>
            and <code>PhysicalResourceId</code>, go to the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/">AWS
            CloudFormation User Guide</a>.
            </para>
             <note>
            <para>
            A <code>ValidationError</code> is returned if you specify both <code>StackName</code>
            and <code>PhysicalResourceId</code> in the same request.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackResources service method.</param>
            
            <returns>The response from the DescribeStackResources service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResources">REST API Reference for DescribeStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackResourcesAsync(Amazon.CloudFormation.Model.DescribeStackResourcesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackResources operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackResources operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackResources">REST API Reference for DescribeStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStacks">
            <summary>
            Returns the description for the specified stack; if no stack name was specified, then
            it returns the description for all the stacks created.
            
             <note>
            <para>
            If the stack does not exist, an <code>AmazonCloudFormationException</code> is returned.
            </para>
             </note>
            </summary>
            
            <returns>The response from the DescribeStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStacks(Amazon.CloudFormation.Model.DescribeStacksRequest)">
            <summary>
            Returns the description for the specified stack; if no stack name was specified, then
            it returns the description for all the stacks created.
            
             <note>
            <para>
            If the stack does not exist, an <code>AmazonCloudFormationException</code> is returned.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStacks service method.</param>
            
            <returns>The response from the DescribeStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStacksAsync(System.Threading.CancellationToken)">
            <summary>
            Returns the description for the specified stack; if no stack name was specified, then
            it returns the description for all the stacks created.
            
             <note>
            <para>
            If the stack does not exist, an <code>AmazonCloudFormationException</code> is returned.
            </para>
             </note>
            </summary>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            
            <returns>The response from the DescribeStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStacksAsync(Amazon.CloudFormation.Model.DescribeStacksRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStacks operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStacks operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStacks">REST API Reference for DescribeStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackSet(Amazon.CloudFormation.Model.DescribeStackSetRequest)">
            <summary>
            Returns the description of the specified stack set.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackSet service method.</param>
            
            <returns>The response from the DescribeStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet">REST API Reference for DescribeStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackSetAsync(Amazon.CloudFormation.Model.DescribeStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet">REST API Reference for DescribeStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackSetOperation(Amazon.CloudFormation.Model.DescribeStackSetOperationRequest)">
            <summary>
            Returns the description of the specified stack set operation.
            </summary>
            <param name="request">Container for the necessary parameters to execute the DescribeStackSetOperation service method.</param>
            
            <returns>The response from the DescribeStackSetOperation service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.OperationNotFoundException">
            The specified ID refers to an operation that doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSetOperation">REST API Reference for DescribeStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.DescribeStackSetOperationAsync(Amazon.CloudFormation.Model.DescribeStackSetOperationRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the DescribeStackSetOperation operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the DescribeStackSetOperation operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSetOperation">REST API Reference for DescribeStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.EstimateTemplateCost(Amazon.CloudFormation.Model.EstimateTemplateCostRequest)">
            <summary>
            Returns the estimated monthly cost of a template. The return value is an AWS Simple
            Monthly Calculator URL with a query string that describes the resources required to
            run the template.
            </summary>
            <param name="request">Container for the necessary parameters to execute the EstimateTemplateCost service method.</param>
            
            <returns>The response from the EstimateTemplateCost service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/EstimateTemplateCost">REST API Reference for EstimateTemplateCost Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.EstimateTemplateCostAsync(Amazon.CloudFormation.Model.EstimateTemplateCostRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the EstimateTemplateCost operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the EstimateTemplateCost operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/EstimateTemplateCost">REST API Reference for EstimateTemplateCost Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ExecuteChangeSet(Amazon.CloudFormation.Model.ExecuteChangeSetRequest)">
            <summary>
            Updates a stack using the input information that was provided when the specified change
            set was created. After the call successfully completes, AWS CloudFormation starts
            updating the stack. Use the <a>DescribeStacks</a> action to view the status of the
            update.
            
             
            <para>
            When you execute a change set, AWS CloudFormation deletes all other change sets associated
            with the stack because they aren't valid for the updated stack.
            </para>
             
            <para>
            If a stack policy is associated with the stack, AWS CloudFormation enforces the policy
            during the update. You can't specify a temporary stack policy that overrides the current
            policy.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ExecuteChangeSet service method.</param>
            
            <returns>The response from the ExecuteChangeSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.ChangeSetNotFoundException">
            The specified change set name or ID doesn't exit. To view valid change sets for a
            stack, use the <code>ListChangeSets</code> action.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidChangeSetStatusException">
            The specified change set can't be used to update the stack. For example, the change
            set status might be <code>CREATE_IN_PROGRESS</code>, or the stack status might be
            <code>UPDATE_IN_PROGRESS</code>.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ExecuteChangeSet">REST API Reference for ExecuteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ExecuteChangeSetAsync(Amazon.CloudFormation.Model.ExecuteChangeSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ExecuteChangeSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ExecuteChangeSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ExecuteChangeSet">REST API Reference for ExecuteChangeSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.GetStackPolicy(Amazon.CloudFormation.Model.GetStackPolicyRequest)">
            <summary>
            Returns the stack policy for a specified stack. If a stack doesn't have a policy,
            a null value is returned.
            </summary>
            <param name="request">Container for the necessary parameters to execute the GetStackPolicy service method.</param>
            
            <returns>The response from the GetStackPolicy service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetStackPolicy">REST API Reference for GetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.GetStackPolicyAsync(Amazon.CloudFormation.Model.GetStackPolicyRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the GetStackPolicy operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the GetStackPolicy operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetStackPolicy">REST API Reference for GetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.GetTemplate(Amazon.CloudFormation.Model.GetTemplateRequest)">
            <summary>
            Returns the template body for a specified stack. You can get the template for running
            or deleted stacks.
            
             
            <para>
            For deleted stacks, GetTemplate returns the template for up to 90 days after the stack
            has been deleted.
            </para>
             <note>
            <para>
             If the template does not exist, a <code>ValidationError</code> is returned.
            </para>
             </note>
            </summary>
            <param name="request">Container for the necessary parameters to execute the GetTemplate service method.</param>
            
            <returns>The response from the GetTemplate service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.ChangeSetNotFoundException">
            The specified change set name or ID doesn't exit. To view valid change sets for a
            stack, use the <code>ListChangeSets</code> action.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplate">REST API Reference for GetTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.GetTemplateAsync(Amazon.CloudFormation.Model.GetTemplateRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the GetTemplate operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the GetTemplate operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplate">REST API Reference for GetTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.GetTemplateSummary(Amazon.CloudFormation.Model.GetTemplateSummaryRequest)">
            <summary>
            Returns information about a new or existing template. The <code>GetTemplateSummary</code>
            action is useful for viewing parameter information, such as default parameter values
            and parameter types, before you create or update a stack.
            
             
            <para>
            You can use the <code>GetTemplateSummary</code> action when you submit a template,
            or you can get template information for a running or deleted stack.
            </para>
             
            <para>
            For deleted stacks, <code>GetTemplateSummary</code> returns the template information
            for up to 90 days after the stack has been deleted. If the template does not exist,
            a <code>ValidationError</code> is returned.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the GetTemplateSummary service method.</param>
            
            <returns>The response from the GetTemplateSummary service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummary">REST API Reference for GetTemplateSummary Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.GetTemplateSummaryAsync(Amazon.CloudFormation.Model.GetTemplateSummaryRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the GetTemplateSummary operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the GetTemplateSummary operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummary">REST API Reference for GetTemplateSummary Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListChangeSets(Amazon.CloudFormation.Model.ListChangeSetsRequest)">
            <summary>
            Returns the ID and status of each active change set for a stack. For example, AWS
            CloudFormation lists change sets that are in the <code>CREATE_IN_PROGRESS</code> or
            <code>CREATE_PENDING</code> state.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListChangeSets service method.</param>
            
            <returns>The response from the ListChangeSets service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets">REST API Reference for ListChangeSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListChangeSetsAsync(Amazon.CloudFormation.Model.ListChangeSetsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListChangeSets operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListChangeSets operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListChangeSets">REST API Reference for ListChangeSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListExports(Amazon.CloudFormation.Model.ListExportsRequest)">
            <summary>
            Lists all exported output values in the account and region in which you call this
            action. Use this action to see the exported output values that you can import into
            other stacks. To import values, use the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html">
            <code>Fn::ImportValue</code> </a> function.
            
             
            <para>
            For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-exports.html">
            AWS CloudFormation Export Stack Output Values</a>.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListExports service method.</param>
            
            <returns>The response from the ListExports service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListExports">REST API Reference for ListExports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListExportsAsync(Amazon.CloudFormation.Model.ListExportsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListExports operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListExports operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListExports">REST API Reference for ListExports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListImports(Amazon.CloudFormation.Model.ListImportsRequest)">
            <summary>
            Lists all stacks that are importing an exported output value. To modify or remove
            an exported output value, first use this action to see which stacks are using it.
            To see the exported output values in your account, see <a>ListExports</a>.
            
             
            <para>
            For more information about importing an exported output value, see the <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-importvalue.html">
            <code>Fn::ImportValue</code> </a> function.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListImports service method.</param>
            
            <returns>The response from the ListImports service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListImports">REST API Reference for ListImports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListImportsAsync(Amazon.CloudFormation.Model.ListImportsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListImports operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListImports operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListImports">REST API Reference for ListImports Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackInstances(Amazon.CloudFormation.Model.ListStackInstancesRequest)">
            <summary>
            Returns summary information about stack instances that are associated with the specified
            stack set. You can filter for stack instances that are associated with a specific
            AWS account name or region.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackInstances service method.</param>
            
            <returns>The response from the ListStackInstances service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstances">REST API Reference for ListStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackInstancesAsync(Amazon.CloudFormation.Model.ListStackInstancesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackInstances operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackInstances operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackInstances">REST API Reference for ListStackInstances Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackResources(Amazon.CloudFormation.Model.ListStackResourcesRequest)">
            <summary>
            Returns descriptions of all resources of the specified stack.
            
             
            <para>
            For deleted stacks, ListStackResources returns resource information for up to 90 days
            after the stack has been deleted.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackResources service method.</param>
            
            <returns>The response from the ListStackResources service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackResources">REST API Reference for ListStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackResourcesAsync(Amazon.CloudFormation.Model.ListStackResourcesRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackResources operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackResources operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackResources">REST API Reference for ListStackResources Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStacks">
            <summary>
            Returns the summary information for stacks whose status matches the specified StackStatusFilter.
            Summary information for stacks that have been deleted is kept for 90 days after the
            stack is deleted. If no StackStatusFilter is specified, summary information for all
            stacks is returned (including existing stacks and stacks that have been deleted).
            </summary>
            
            <returns>The response from the ListStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStacks(Amazon.CloudFormation.Model.ListStacksRequest)">
            <summary>
            Returns the summary information for stacks whose status matches the specified StackStatusFilter.
            Summary information for stacks that have been deleted is kept for 90 days after the
            stack is deleted. If no StackStatusFilter is specified, summary information for all
            stacks is returned (including existing stacks and stacks that have been deleted).
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStacks service method.</param>
            
            <returns>The response from the ListStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStacksAsync(System.Threading.CancellationToken)">
            <summary>
            Returns the summary information for stacks whose status matches the specified StackStatusFilter.
            Summary information for stacks that have been deleted is kept for 90 days after the
            stack is deleted. If no StackStatusFilter is specified, summary information for all
            stacks is returned (including existing stacks and stacks that have been deleted).
            </summary>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            
            <returns>The response from the ListStacks service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStacksAsync(Amazon.CloudFormation.Model.ListStacksRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStacks operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStacks operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStacks">REST API Reference for ListStacks Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackSetOperationResults(Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest)">
            <summary>
            Returns summary information about the results of a stack set operation.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperationResults service method.</param>
            
            <returns>The response from the ListStackSetOperationResults service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.OperationNotFoundException">
            The specified ID refers to an operation that doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperationResults">REST API Reference for ListStackSetOperationResults Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackSetOperationResultsAsync(Amazon.CloudFormation.Model.ListStackSetOperationResultsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackSetOperationResults operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperationResults operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperationResults">REST API Reference for ListStackSetOperationResults Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackSetOperations(Amazon.CloudFormation.Model.ListStackSetOperationsRequest)">
            <summary>
            Returns summary information about operations performed on a stack set.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperations service method.</param>
            
            <returns>The response from the ListStackSetOperations service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperations">REST API Reference for ListStackSetOperations Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackSetOperationsAsync(Amazon.CloudFormation.Model.ListStackSetOperationsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackSetOperations operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackSetOperations operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSetOperations">REST API Reference for ListStackSetOperations Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackSets(Amazon.CloudFormation.Model.ListStackSetsRequest)">
            <summary>
            Returns summary information about stack sets that are associated with the user.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ListStackSets service method.</param>
            
            <returns>The response from the ListStackSets service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets">REST API Reference for ListStackSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ListStackSetsAsync(Amazon.CloudFormation.Model.ListStackSetsRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ListStackSets operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ListStackSets operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets">REST API Reference for ListStackSets Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.SetStackPolicy(Amazon.CloudFormation.Model.SetStackPolicyRequest)">
            <summary>
            Sets a stack policy for a specified stack.
            </summary>
            <param name="request">Container for the necessary parameters to execute the SetStackPolicy service method.</param>
            
            <returns>The response from the SetStackPolicy service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetStackPolicy">REST API Reference for SetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.SetStackPolicyAsync(Amazon.CloudFormation.Model.SetStackPolicyRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the SetStackPolicy operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the SetStackPolicy operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SetStackPolicy">REST API Reference for SetStackPolicy Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.SignalResource(Amazon.CloudFormation.Model.SignalResourceRequest)">
            <summary>
            Sends a signal to the specified resource with a success or failure status. You can
            use the SignalResource API in conjunction with a creation policy or update policy.
            AWS CloudFormation doesn't proceed with a stack creation or update until resources
            receive the required number of signals or the timeout period is exceeded. The SignalResource
            API is useful in cases where you want to send signals from anywhere other than an
            Amazon EC2 instance.
            </summary>
            <param name="request">Container for the necessary parameters to execute the SignalResource service method.</param>
            
            <returns>The response from the SignalResource service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SignalResource">REST API Reference for SignalResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.SignalResourceAsync(Amazon.CloudFormation.Model.SignalResourceRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the SignalResource operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the SignalResource operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/SignalResource">REST API Reference for SignalResource Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.StopStackSetOperation(Amazon.CloudFormation.Model.StopStackSetOperationRequest)">
            <summary>
            Stops an in-progress operation on a stack set and its associated stack instances.
            </summary>
            <param name="request">Container for the necessary parameters to execute the StopStackSetOperation service method.</param>
            
            <returns>The response from the StopStackSetOperation service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationNotFoundException">
            The specified ID refers to an operation that doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StopStackSetOperation">REST API Reference for StopStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.StopStackSetOperationAsync(Amazon.CloudFormation.Model.StopStackSetOperationRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the StopStackSetOperation operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the StopStackSetOperation operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StopStackSetOperation">REST API Reference for StopStackSetOperation Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.UpdateStack(Amazon.CloudFormation.Model.UpdateStackRequest)">
            <summary>
            Updates a stack as specified in the template. After the call completes successfully,
            the stack update starts. You can check the status of the stack via the <a>DescribeStacks</a>
            action.
            
             
            <para>
            To get a copy of the template for an existing stack, you can use the <a>GetTemplate</a>
            action.
            </para>
             
            <para>
            For more information about creating an update template, updating a stack, and monitoring
            the progress of the update, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html">Updating
            a Stack</a>.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the UpdateStack service method.</param>
            
            <returns>The response from the UpdateStack service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InsufficientCapabilitiesException">
            The template contains resources with capabilities that weren't specified in the Capabilities
            parameter.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.TokenAlreadyExistsException">
            A client request token already exists.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStack">REST API Reference for UpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.UpdateStackAsync(Amazon.CloudFormation.Model.UpdateStackRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the UpdateStack operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the UpdateStack operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStack">REST API Reference for UpdateStack Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.UpdateStackSet(Amazon.CloudFormation.Model.UpdateStackSetRequest)">
            <summary>
            Updates the stack set and <i>all</i> associated stack instances.
            
             
            <para>
            Even if the stack set operation created by updating the stack set fails (completely
            or partially, below or above a specified failure tolerance), the stack set is updated
            with your changes. Subsequent <a>CreateStackInstances</a> calls on the specified stack
            set use the updated stack set.
            </para>
            </summary>
            <param name="request">Container for the necessary parameters to execute the UpdateStackSet service method.</param>
            
            <returns>The response from the UpdateStackSet service method, as returned by CloudFormation.</returns>
            <exception cref="T:Amazon.CloudFormation.Model.InvalidOperationException">
            The specified operation isn't valid.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationIdAlreadyExistsException">
            The specified operation ID already exists.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.OperationInProgressException">
            Another operation is currently in progress for this stack set. Only one operation
            can be performed for a stack set at a given time.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StackSetNotFoundException">
            The specified stack set doesn't exist.
            </exception>
            <exception cref="T:Amazon.CloudFormation.Model.StaleRequestException">
            Another operation has been performed on this stack set since the specified operation
            was performed.
            </exception>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSet">REST API Reference for UpdateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.UpdateStackSetAsync(Amazon.CloudFormation.Model.UpdateStackSetRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the UpdateStackSet operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the UpdateStackSet operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSet">REST API Reference for UpdateStackSet Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ValidateTemplate">
            <summary>
            Validates a specified template. AWS CloudFormation first checks if the template is
            valid JSON. If it isn't, AWS CloudFormation checks if the template is valid YAML.
            If both these checks fail, AWS CloudFormation returns a template validation error.
            </summary>
            
            <returns>The response from the ValidateTemplate service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ValidateTemplate(Amazon.CloudFormation.Model.ValidateTemplateRequest)">
            <summary>
            Validates a specified template. AWS CloudFormation first checks if the template is
            valid JSON. If it isn't, AWS CloudFormation checks if the template is valid YAML.
            If both these checks fail, AWS CloudFormation returns a template validation error.
            </summary>
            <param name="request">Container for the necessary parameters to execute the ValidateTemplate service method.</param>
            
            <returns>The response from the ValidateTemplate service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ValidateTemplateAsync(System.Threading.CancellationToken)">
            <summary>
            Validates a specified template. AWS CloudFormation first checks if the template is
            valid JSON. If it isn't, AWS CloudFormation checks if the template is valid YAML.
            If both these checks fail, AWS CloudFormation returns a template validation error.
            </summary>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            
            <returns>The response from the ValidateTemplate service method, as returned by CloudFormation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
        <member name="M:Amazon.CloudFormation.IAmazonCloudFormation.ValidateTemplateAsync(Amazon.CloudFormation.Model.ValidateTemplateRequest,System.Threading.CancellationToken)">
            <summary>
            Initiates the asynchronous execution of the ValidateTemplate operation.
            </summary>
            
            <param name="request">Container for the necessary parameters to execute the ValidateTemplate operation.</param>
            <param name="cancellationToken">
                A cancellation token that can be used by other objects or threads to receive notice of cancellation.
            </param>
            <returns>The task object representing the asynchronous operation.</returns>
            <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ValidateTemplate">REST API Reference for ValidateTemplate Operation</seealso>
        </member>
    </members>
</doc>