/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the cloudformation-2010-05-15.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CloudFormation.Model { /// /// The structures that contain summary information about the specified stack set. /// public partial class StackSetSummary { private AutoDeployment _autoDeployment; private string _description; private StackDriftStatus _driftStatus; private DateTime? _lastDriftCheckTimestamp; private ManagedExecution _managedExecution; private PermissionModels _permissionModel; private string _stackSetId; private string _stackSetName; private StackSetStatus _status; /// /// Gets and sets the property AutoDeployment. /// /// [Service-managed permissions] Describes whether StackSets automatically deploys to /// Organizations accounts that are added to a target organizational unit (OU). /// /// public AutoDeployment AutoDeployment { get { return this._autoDeployment; } set { this._autoDeployment = value; } } // Check to see if AutoDeployment property is set internal bool IsSetAutoDeployment() { return this._autoDeployment != null; } /// /// Gets and sets the property Description. /// /// A description of the stack set that you specify when the stack set is created or updated. /// /// [AWSProperty(Min=1, Max=1024)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// /// Gets and sets the property DriftStatus. /// /// Status of the stack set's actual configuration compared to its expected template and /// parameter configuration. A stack set is considered to have drifted if one or more /// of its stack instances have drifted from their expected template and parameter configuration. /// /// /// public StackDriftStatus DriftStatus { get { return this._driftStatus; } set { this._driftStatus = value; } } // Check to see if DriftStatus property is set internal bool IsSetDriftStatus() { return this._driftStatus != null; } /// /// Gets and sets the property LastDriftCheckTimestamp. /// /// Most recent time when CloudFormation performed a drift detection operation on the /// stack set. This value will be NULL for any stack set on which drift detection /// hasn't yet been performed. /// /// public DateTime LastDriftCheckTimestamp { get { return this._lastDriftCheckTimestamp.GetValueOrDefault(); } set { this._lastDriftCheckTimestamp = value; } } // Check to see if LastDriftCheckTimestamp property is set internal bool IsSetLastDriftCheckTimestamp() { return this._lastDriftCheckTimestamp.HasValue; } /// /// Gets and sets the property ManagedExecution. /// /// Describes whether StackSets performs non-conflicting operations concurrently and queues /// conflicting operations. /// /// public ManagedExecution ManagedExecution { get { return this._managedExecution; } set { this._managedExecution = value; } } // Check to see if ManagedExecution property is set internal bool IsSetManagedExecution() { return this._managedExecution != null; } /// /// Gets and sets the property PermissionModel. /// /// Describes how the IAM roles required for stack set operations are created. /// /// /// public PermissionModels PermissionModel { get { return this._permissionModel; } set { this._permissionModel = value; } } // Check to see if PermissionModel property is set internal bool IsSetPermissionModel() { return this._permissionModel != null; } /// /// Gets and sets the property StackSetId. /// /// The ID of the stack set. /// /// public string StackSetId { get { return this._stackSetId; } set { this._stackSetId = value; } } // Check to see if StackSetId property is set internal bool IsSetStackSetId() { return this._stackSetId != null; } /// /// Gets and sets the property StackSetName. /// /// The name of the stack set. /// /// public string StackSetName { get { return this._stackSetName; } set { this._stackSetName = value; } } // Check to see if StackSetName property is set internal bool IsSetStackSetName() { return this._stackSetName != null; } /// /// Gets and sets the property Status. /// /// The status of the stack set. /// /// public StackSetStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }