repo_name
stringlengths
1
52
repo_creator
stringclasses
6 values
programming_language
stringclasses
4 values
code
stringlengths
0
9.68M
num_lines
int64
1
234k
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListStackInstances operation. /// </summary> public partial class ListStackInstancesResponse : AmazonWebServiceResponse { private string _nextToken; private List<StackInstanceSummary> _summaries = new List<StackInstanceSummary>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// If the request doesn't return all 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <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> public List<StackInstanceSummary> Summaries { get { return this._summaries; } set { this._summaries = value; } } // Check to see if Summaries property is set internal bool IsSetSummaries() { return this._summaries != null && this._summaries.Count > 0; } } }
81
aws-sdk-net
aws
C#
/* * 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 { /// <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> public partial class ListStackResourcesRequest : AmazonCloudFormationRequest { private string _nextToken; private string _stackName; /// <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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name or the unique stack ID that is associated with the stack, which aren't 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> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } } }
98
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The output for a <a>ListStackResources</a> action. /// </summary> public partial class ListStackResourcesResponse : AmazonWebServiceResponse { private string _nextToken; private List<StackResourceSummary> _stackResourceSummaries = new List<StackResourceSummary>(); /// <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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property StackResourceSummaries. /// <para> /// A list of <code>StackResourceSummary</code> structures. /// </para> /// </summary> public List<StackResourceSummary> StackResourceSummaries { get { return this._stackResourceSummaries; } set { this._stackResourceSummaries = value; } } // Check to see if StackResourceSummaries property is set internal bool IsSetStackResourceSummaries() { return this._stackResourceSummaries != null && this._stackResourceSummaries.Count > 0; } } }
78
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListStackSetOperationResults operation. /// Returns summary information about the results of a stack set operation. /// </summary> public partial class ListStackSetOperationResultsRequest : AmazonCloudFormationRequest { private CallAs _callAs; private List<OperationResultFilter> _filters = new List<OperationResultFilter>(); private int? _maxResults; private string _nextToken; private string _operationId; private string _stackSetName; /// <summary> /// Gets and sets the property CallAs. /// <para> /// [Service-managed permissions] Specifies whether you are acting as an account administrator /// in the organization's management account or as a delegated administrator in a member /// account. /// </para> /// /// <para> /// By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with /// self-managed permissions. /// </para> /// <ul> <li> /// <para> /// If you are signed in to the management account, specify <code>SELF</code>. /// </para> /// </li> <li> /// <para> /// If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>. /// </para> /// /// <para> /// Your Amazon Web Services account must be registered as a delegated administrator in /// the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register /// a delegated administrator</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </li> </ul> /// </summary> public CallAs CallAs { get { return this._callAs; } set { this._callAs = value; } } // Check to see if CallAs property is set internal bool IsSetCallAs() { return this._callAs != null; } /// <summary> /// Gets and sets the property Filters. /// <para> /// The filter to apply to operation results. /// </para> /// </summary> [AWSProperty(Max=1)] public List<OperationResultFilter> Filters { get { return this._filters; } set { this._filters = value; } } // Check to see if Filters property is set internal bool IsSetFilters() { return this._filters != null && this._filters.Count > 0; } /// <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> [AWSProperty(Min=1, Max=100)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// If the previous request didn't return all 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property OperationId. /// <para> /// The ID of the stack set operation. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string OperationId { get { return this._operationId; } set { this._operationId = value; } } // Check to see if OperationId property is set internal bool IsSetOperationId() { return this._operationId != null; } /// <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> [AWSProperty(Required=true)] 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; } } }
188
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListStackSetOperationResults operation. /// </summary> public partial class ListStackSetOperationResultsResponse : AmazonWebServiceResponse { private string _nextToken; private List<StackSetOperationResultSummary> _summaries = new List<StackSetOperationResultSummary>(); /// <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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <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 Amazon Web Services Regions /// that are included in the operation. /// </para> /// </summary> public List<StackSetOperationResultSummary> Summaries { get { return this._summaries; } set { this._summaries = value; } } // Check to see if Summaries property is set internal bool IsSetSummaries() { return this._summaries != null && this._summaries.Count > 0; } } }
82
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListStackSetOperations operation. /// Returns summary information about operations performed on a stack set. /// </summary> public partial class ListStackSetOperationsRequest : AmazonCloudFormationRequest { private CallAs _callAs; private int? _maxResults; private string _nextToken; private string _stackSetName; /// <summary> /// Gets and sets the property CallAs. /// <para> /// [Service-managed permissions] Specifies whether you are acting as an account administrator /// in the organization's management account or as a delegated administrator in a member /// account. /// </para> /// /// <para> /// By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with /// self-managed permissions. /// </para> /// <ul> <li> /// <para> /// If you are signed in to the management account, specify <code>SELF</code>. /// </para> /// </li> <li> /// <para> /// If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>. /// </para> /// /// <para> /// Your Amazon Web Services account must be registered as a delegated administrator in /// the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register /// a delegated administrator</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </li> </ul> /// </summary> public CallAs CallAs { get { return this._callAs; } set { this._callAs = value; } } // Check to see if CallAs property is set internal bool IsSetCallAs() { return this._callAs != null; } /// <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> [AWSProperty(Min=1, Max=100)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <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> [AWSProperty(Required=true)] 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; } } }
148
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListStackSetOperations operation. /// </summary> public partial class ListStackSetOperationsResponse : AmazonWebServiceResponse { private string _nextToken; private List<StackSetOperationSummary> _summaries = new List<StackSetOperationSummary>(); /// <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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <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> public List<StackSetOperationSummary> Summaries { get { return this._summaries; } set { this._summaries = value; } } // Check to see if Summaries property is set internal bool IsSetSummaries() { return this._summaries != null && this._summaries.Count > 0; } } }
81
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListStackSets operation. /// Returns summary information about stack sets that are associated with the user. /// /// <ul> <li> /// <para> /// [Self-managed permissions] If you set the <code>CallAs</code> parameter to <code>SELF</code> /// while signed in to your Amazon Web Services account, <code>ListStackSets</code> returns /// all self-managed stack sets in your Amazon Web Services account. /// </para> /// </li> <li> /// <para> /// [Service-managed permissions] If you set the <code>CallAs</code> parameter to <code>SELF</code> /// while signed in to the organization's management account, <code>ListStackSets</code> /// returns all stack sets in the management account. /// </para> /// </li> <li> /// <para> /// [Service-managed permissions] If you set the <code>CallAs</code> parameter to <code>DELEGATED_ADMIN</code> /// while signed in to your member account, <code>ListStackSets</code> returns all stack /// sets with service-managed permissions in the management account. /// </para> /// </li> </ul> /// </summary> public partial class ListStackSetsRequest : AmazonCloudFormationRequest { private CallAs _callAs; private int? _maxResults; private string _nextToken; private StackSetStatus _status; /// <summary> /// Gets and sets the property CallAs. /// <para> /// [Service-managed permissions] Specifies whether you are acting as an account administrator /// in the management account or as a delegated administrator in a member account. /// </para> /// /// <para> /// By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with /// self-managed permissions. /// </para> /// <ul> <li> /// <para> /// If you are signed in to the management account, specify <code>SELF</code>. /// </para> /// </li> <li> /// <para> /// If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>. /// </para> /// /// <para> /// Your Amazon Web Services account must be registered as a delegated administrator in /// the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register /// a delegated administrator</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </li> </ul> /// </summary> public CallAs CallAs { get { return this._callAs; } set { this._callAs = value; } } // Check to see if CallAs property is set internal bool IsSetCallAs() { return this._callAs != null; } /// <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> [AWSProperty(Min=1, Max=100)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// If the previous paginated request didn't return all 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the stack sets that you want to get summary information about. /// </para> /// </summary> 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; } } }
165
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListStackSets operation. /// </summary> public partial class ListStackSetsResponse : AmazonWebServiceResponse { private string _nextToken; private List<StackSetSummary> _summaries = new List<StackSetSummary>(); /// <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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <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> public List<StackSetSummary> Summaries { get { return this._summaries; } set { this._summaries = value; } } // Check to see if Summaries property is set internal bool IsSetSummaries() { return this._summaries != null && this._summaries.Count > 0; } } }
81
aws-sdk-net
aws
C#
/* * 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 { /// <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> public partial class ListStacksRequest : AmazonCloudFormationRequest { private string _nextToken; private List<string> _stackStatusFilter = new List<string>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// A string that identifies the next page of stacks that you want to retrieve. /// </para> /// </summary> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <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> public List<string> StackStatusFilter { get { return this._stackStatusFilter; } set { this._stackStatusFilter = value; } } // Check to see if StackStatusFilter property is set internal bool IsSetStackStatusFilter() { return this._stackStatusFilter != null && this._stackStatusFilter.Count > 0; } } }
83
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The output for <a>ListStacks</a> action. /// </summary> public partial class ListStacksResponse : AmazonWebServiceResponse { private string _nextToken; private List<StackSummary> _stackSummaries = new List<StackSummary>(); /// <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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property StackSummaries. /// <para> /// A list of <code>StackSummary</code> structures containing information about the specified /// stacks. /// </para> /// </summary> public List<StackSummary> StackSummaries { get { return this._stackSummaries; } set { this._stackSummaries = value; } } // Check to see if StackSummaries property is set internal bool IsSetStackSummaries() { return this._stackSummaries != null && this._stackSummaries.Count > 0; } } }
79
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListTypeRegistrations operation. /// Returns a list of registration tokens for the specified extension(s). /// </summary> public partial class ListTypeRegistrationsRequest : AmazonCloudFormationRequest { private int? _maxResults; private string _nextToken; private RegistrationStatus _registrationStatusFilter; private RegistryType _type; private string _typeArn; private string _typeName; /// <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> [AWSProperty(Min=1, Max=100)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// If the previous paginated request didn't return all 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 this action 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property RegistrationStatusFilter. /// <para> /// The current status of the extension registration request. /// </para> /// /// <para> /// The default is <code>IN_PROGRESS</code>. /// </para> /// </summary> public RegistrationStatus RegistrationStatusFilter { get { return this._registrationStatusFilter; } set { this._registrationStatusFilter = value; } } // Check to see if RegistrationStatusFilter property is set internal bool IsSetRegistrationStatusFilter() { return this._registrationStatusFilter != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The kind of extension. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> public RegistryType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeArn. /// <para> /// The Amazon Resource Name (ARN) of the extension. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> [AWSProperty(Max=1024)] public string TypeArn { get { return this._typeArn; } set { this._typeArn = value; } } // Check to see if TypeArn property is set internal bool IsSetTypeArn() { return this._typeArn != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
183
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListTypeRegistrations operation. /// </summary> public partial class ListTypeRegistrationsResponse : AmazonWebServiceResponse { private string _nextToken; private List<string> _registrationTokenList = new List<string>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// If the request doesn't return all the remaining results, <code>NextToken</code> is /// set to a token. To retrieve the next set of results, call this action 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property RegistrationTokenList. /// <para> /// A list of extension registration tokens. /// </para> /// /// <para> /// Use <a>DescribeTypeRegistration</a> to return detailed information about a type registration /// request. /// </para> /// </summary> public List<string> RegistrationTokenList { get { return this._registrationTokenList; } set { this._registrationTokenList = value; } } // Check to see if RegistrationTokenList property is set internal bool IsSetRegistrationTokenList() { return this._registrationTokenList != null && this._registrationTokenList.Count > 0; } } }
85
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListTypes operation. /// Returns summary information about extension that have been registered with CloudFormation. /// </summary> public partial class ListTypesRequest : AmazonCloudFormationRequest { private DeprecatedStatus _deprecatedStatus; private TypeFilters _filters; private int? _maxResults; private string _nextToken; private ProvisioningType _provisioningType; private RegistryType _type; private Visibility _visibility; /// <summary> /// Gets and sets the property DeprecatedStatus. /// <para> /// The deprecation status of the extension that you want to get summary information about. /// </para> /// /// <para> /// Valid values include: /// </para> /// <ul> <li> /// <para> /// <code>LIVE</code>: The extension is registered for use in CloudFormation operations. /// </para> /// </li> <li> /// <para> /// <code>DEPRECATED</code>: The extension has been deregistered and can no longer be /// used in CloudFormation operations. /// </para> /// </li> </ul> /// </summary> public DeprecatedStatus DeprecatedStatus { get { return this._deprecatedStatus; } set { this._deprecatedStatus = value; } } // Check to see if DeprecatedStatus property is set internal bool IsSetDeprecatedStatus() { return this._deprecatedStatus != null; } /// <summary> /// Gets and sets the property Filters. /// <para> /// Filter criteria to use in determining which extensions to return. /// </para> /// /// <para> /// Filters must be compatible with <code>Visibility</code> to return valid results. For /// example, specifying <code>AWS_TYPES</code> for <code>Category</code> and <code>PRIVATE</code> /// for <code>Visibility</code> returns an empty list of types, but specifying <code>PUBLIC</code> /// for <code>Visibility</code> returns the desired list. /// </para> /// </summary> public TypeFilters Filters { get { return this._filters; } set { this._filters = value; } } // Check to see if Filters property is set internal bool IsSetFilters() { return this._filters != null; } /// <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> [AWSProperty(Min=1, Max=100)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <summary> /// Gets and sets the property NextToken. /// <para> /// If the previous paginated request didn't return all 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 this action 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property ProvisioningType. /// <para> /// For resource types, the provisioning behavior of the resource type. CloudFormation /// determines the provisioning type during registration, based on the types of handlers /// in the schema handler package submitted. /// </para> /// /// <para> /// Valid values include: /// </para> /// <ul> <li> /// <para> /// <code>FULLY_MUTABLE</code>: The resource type includes an update handler to process /// updates to the type during stack update operations. /// </para> /// </li> <li> /// <para> /// <code>IMMUTABLE</code>: The resource type doesn't include an update handler, so the /// type can't be updated and must instead be replaced during stack update operations. /// </para> /// </li> <li> /// <para> /// <code>NON_PROVISIONABLE</code>: The resource type doesn't include create, read, and /// delete handlers, and therefore can't actually be provisioned. /// </para> /// </li> </ul> /// <para> /// The default is <code>FULLY_MUTABLE</code>. /// </para> /// </summary> public ProvisioningType ProvisioningType { get { return this._provisioningType; } set { this._provisioningType = value; } } // Check to see if ProvisioningType property is set internal bool IsSetProvisioningType() { return this._provisioningType != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of extension. /// </para> /// </summary> public RegistryType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property Visibility. /// <para> /// The scope at which the extensions are visible and usable in CloudFormation operations. /// </para> /// /// <para> /// Valid values include: /// </para> /// <ul> <li> /// <para> /// <code>PRIVATE</code>: Extensions that are visible and usable within this account /// and Region. This includes: /// </para> /// <ul> <li> /// <para> /// Private extensions you have registered in this account and Region. /// </para> /// </li> <li> /// <para> /// Public extensions that you have activated in this account and Region. /// </para> /// </li> </ul> </li> <li> /// <para> /// <code>PUBLIC</code>: Extensions that are publicly visible and available to be activated /// within any Amazon Web Services account. This includes extensions from Amazon Web Services, /// in addition to third-party publishers. /// </para> /// </li> </ul> /// <para> /// The default is <code>PRIVATE</code>. /// </para> /// </summary> public Visibility Visibility { get { return this._visibility; } set { this._visibility = value; } } // Check to see if Visibility property is set internal bool IsSetVisibility() { return this._visibility != null; } } }
254
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListTypes operation. /// </summary> public partial class ListTypesResponse : AmazonWebServiceResponse { private string _nextToken; private List<TypeSummary> _typeSummaries = new List<TypeSummary>(); /// <summary> /// Gets and sets the property NextToken. /// <para> /// If the request doesn't return all the remaining results, <code>NextToken</code> is /// set to a token. To retrieve the next set of results, call this action 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property TypeSummaries. /// <para> /// A list of <code>TypeSummary</code> structures that contain information about the specified /// extensions. /// </para> /// </summary> public List<TypeSummary> TypeSummaries { get { return this._typeSummaries; } set { this._typeSummaries = value; } } // Check to see if TypeSummaries property is set internal bool IsSetTypeSummaries() { return this._typeSummaries != null && this._typeSummaries.Count > 0; } } }
81
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the ListTypeVersions operation. /// Returns summary information about the versions of an extension. /// </summary> public partial class ListTypeVersionsRequest : AmazonCloudFormationRequest { private string _arn; private DeprecatedStatus _deprecatedStatus; private int? _maxResults; private string _nextToken; private string _publisherId; private RegistryType _type; private string _typeName; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the extension for which you want version summary /// information. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> [AWSProperty(Max=1024)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property DeprecatedStatus. /// <para> /// The deprecation status of the extension versions that you want to get summary information /// about. /// </para> /// /// <para> /// Valid values include: /// </para> /// <ul> <li> /// <para> /// <code>LIVE</code>: The extension version is registered and can be used in CloudFormation /// operations, dependent on its provisioning behavior and visibility scope. /// </para> /// </li> <li> /// <para> /// <code>DEPRECATED</code>: The extension version has been deregistered and can no longer /// be used in CloudFormation operations. /// </para> /// </li> </ul> /// <para> /// The default is <code>LIVE</code>. /// </para> /// </summary> public DeprecatedStatus DeprecatedStatus { get { return this._deprecatedStatus; } set { this._deprecatedStatus = value; } } // Check to see if DeprecatedStatus property is set internal bool IsSetDeprecatedStatus() { return this._deprecatedStatus != null; } /// <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> [AWSProperty(Min=1, Max=100)] public int MaxResults { get { return this._maxResults.GetValueOrDefault(); } set { this._maxResults = value; } } // Check to see if MaxResults property is set internal bool IsSetMaxResults() { return this._maxResults.HasValue; } /// <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 this action 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property PublisherId. /// <para> /// The publisher ID of the extension publisher. /// </para> /// /// <para> /// Extensions published by Amazon aren't assigned a publisher ID. /// </para> /// </summary> [AWSProperty(Min=1, Max=40)] public string PublisherId { get { return this._publisherId; } set { this._publisherId = value; } } // Check to see if PublisherId property is set internal bool IsSetPublisherId() { return this._publisherId != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The kind of the extension. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> public RegistryType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension for which you want version summary information. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
223
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the ListTypeVersions operation. /// </summary> public partial class ListTypeVersionsResponse : AmazonWebServiceResponse { private string _nextToken; private List<TypeVersionSummary> _typeVersionSummaries = new List<TypeVersionSummary>(); /// <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 this action 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> [AWSProperty(Min=1, Max=1024)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// <summary> /// Gets and sets the property TypeVersionSummaries. /// <para> /// A list of <code>TypeVersionSummary</code> structures that contain information about /// the specified extension's versions. /// </para> /// </summary> public List<TypeVersionSummary> TypeVersionSummaries { get { return this._typeVersionSummaries; } set { this._typeVersionSummaries = value; } } // Check to see if TypeVersionSummaries property is set internal bool IsSetTypeVersionSummaries() { return this._typeVersionSummaries != null && this._typeVersionSummaries.Count > 0; } } }
81
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains logging configuration information for an extension. /// </summary> public partial class LoggingConfig { private string _logGroupName; private string _logRoleArn; /// <summary> /// Gets and sets the property LogGroupName. /// <para> /// The Amazon CloudWatch Logs group to which CloudFormation sends error logging information /// when invoking the extension's handlers. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=512)] public string LogGroupName { get { return this._logGroupName; } set { this._logGroupName = value; } } // Check to see if LogGroupName property is set internal bool IsSetLogGroupName() { return this._logGroupName != null; } /// <summary> /// Gets and sets the property LogRoleArn. /// <para> /// The Amazon Resource Name (ARN) of the role that CloudFormation should assume when /// sending log entries to CloudWatch Logs. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=256)] public string LogRoleArn { get { return this._logRoleArn; } set { this._logRoleArn = value; } } // Check to see if LogRoleArn property is set internal bool IsSetLogRoleArn() { return this._logRoleArn != null; } } }
80
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Describes whether StackSets performs non-conflicting operations concurrently and queues /// conflicting operations. /// </summary> public partial class ManagedExecution { private bool? _active; /// <summary> /// Gets and sets the property Active. /// <para> /// When <code>true</code>, StackSets performs non-conflicting operations concurrently /// and queues conflicting operations. After conflicting operations finish, StackSets /// starts queued operations in request order. /// </para> /// <note> /// <para> /// If there are already running or queued operations, StackSets queues all incoming operations /// even if they are non-conflicting. /// </para> /// /// <para> /// You can't modify your stack set's execution configuration while there are running /// or queued operations for that stack set. /// </para> /// </note> /// <para> /// When <code>false</code> (default), StackSets performs one operation at a time in request /// order. /// </para> /// </summary> public bool Active { get { return this._active.GetValueOrDefault(); } set { this._active = value; } } // Check to see if Active property is set internal bool IsSetActive() { return this._active.HasValue; } } }
75
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains information about the module from which the resource was created, if the /// resource was created from a module included in the stack template. /// /// /// <para> /// For more information about modules, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html">Using /// modules to encapsulate and reuse resource configurations</a> in the <i>CloudFormation /// User Guide</i>. /// </para> /// </summary> public partial class ModuleInfo { private string _logicalIdHierarchy; private string _typeHierarchy; /// <summary> /// Gets and sets the property LogicalIdHierarchy. /// <para> /// A concatenated list of the logical IDs of the module or modules containing the resource. /// Modules are listed starting with the inner-most nested module, and separated by <code>/</code>. /// </para> /// /// <para> /// In the following example, the resource was created from a module, <code>moduleA</code>, /// that's nested inside a parent module, <code>moduleB</code>. /// </para> /// /// <para> /// <code>moduleA/moduleB</code> /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html#module-ref-resources">Referencing /// resources in a module</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public string LogicalIdHierarchy { get { return this._logicalIdHierarchy; } set { this._logicalIdHierarchy = value; } } // Check to see if LogicalIdHierarchy property is set internal bool IsSetLogicalIdHierarchy() { return this._logicalIdHierarchy != null; } /// <summary> /// Gets and sets the property TypeHierarchy. /// <para> /// A concatenated list of the module type or types containing the resource. Module types /// are listed starting with the inner-most nested module, and separated by <code>/</code>. /// </para> /// /// <para> /// In the following example, the resource was created from a module of type <code>AWS::First::Example::MODULE</code>, /// that's nested inside a parent module of type <code>AWS::Second::Example::MODULE</code>. /// </para> /// /// <para> /// <code>AWS::First::Example::MODULE/AWS::Second::Example::MODULE</code> /// </para> /// </summary> public string TypeHierarchy { get { return this._typeHierarchy; } set { this._typeHierarchy = value; } } // Check to see if TypeHierarchy property is set internal bool IsSetTypeHierarchy() { return this._typeHierarchy != null; } } }
109
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified name is already in use. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class NameAlreadyExistsException : AmazonCloudFormationException { /// <summary> /// Constructs a new NameAlreadyExistsException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public NameAlreadyExistsException(string message) : base(message) {} /// <summary> /// Construct instance of NameAlreadyExistsException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public NameAlreadyExistsException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of NameAlreadyExistsException /// </summary> /// <param name="innerException"></param> public NameAlreadyExistsException(Exception innerException) : base(innerException) {} /// <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> public NameAlreadyExistsException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public NameAlreadyExistsException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected NameAlreadyExistsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified operation ID already exists. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class OperationIdAlreadyExistsException : AmazonCloudFormationException { /// <summary> /// Constructs a new OperationIdAlreadyExistsException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public OperationIdAlreadyExistsException(string message) : base(message) {} /// <summary> /// Construct instance of OperationIdAlreadyExistsException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public OperationIdAlreadyExistsException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of OperationIdAlreadyExistsException /// </summary> /// <param name="innerException"></param> public OperationIdAlreadyExistsException(Exception innerException) : base(innerException) {} /// <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> public OperationIdAlreadyExistsException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public OperationIdAlreadyExistsException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected OperationIdAlreadyExistsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Another operation is currently in progress for this stack set. Only one operation /// can be performed for a stack set at a given time. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class OperationInProgressException : AmazonCloudFormationException { /// <summary> /// Constructs a new OperationInProgressException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public OperationInProgressException(string message) : base(message) {} /// <summary> /// Construct instance of OperationInProgressException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public OperationInProgressException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of OperationInProgressException /// </summary> /// <param name="innerException"></param> public OperationInProgressException(Exception innerException) : base(innerException) {} /// <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> public OperationInProgressException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public OperationInProgressException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected OperationInProgressException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
125
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified ID refers to an operation that doesn't exist. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class OperationNotFoundException : AmazonCloudFormationException { /// <summary> /// Constructs a new OperationNotFoundException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public OperationNotFoundException(string message) : base(message) {} /// <summary> /// Construct instance of OperationNotFoundException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public OperationNotFoundException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of OperationNotFoundException /// </summary> /// <param name="innerException"></param> public OperationNotFoundException(Exception innerException) : base(innerException) {} /// <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> public OperationNotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public OperationNotFoundException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected OperationNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The status that operation results are filtered by. /// </summary> public partial class OperationResultFilter { private OperationResultFilterName _name; private string _values; /// <summary> /// Gets and sets the property Name. /// <para> /// The type of filter to apply. /// </para> /// </summary> public OperationResultFilterName Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Values. /// <para> /// The value to filter by. /// </para> /// </summary> [AWSProperty(Min=6, Max=9)] public string Values { get { return this._values; } set { this._values = value; } } // Check to see if Values property is set internal bool IsSetValues() { return this._values != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Error reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. CloudFormation doesn't return this error to users. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class OperationStatusCheckFailedException : AmazonCloudFormationException { /// <summary> /// Constructs a new OperationStatusCheckFailedException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public OperationStatusCheckFailedException(string message) : base(message) {} /// <summary> /// Construct instance of OperationStatusCheckFailedException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public OperationStatusCheckFailedException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of OperationStatusCheckFailedException /// </summary> /// <param name="innerException"></param> public OperationStatusCheckFailedException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of OperationStatusCheckFailedException /// </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> public OperationStatusCheckFailedException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of OperationStatusCheckFailedException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public OperationStatusCheckFailedException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the OperationStatusCheckFailedException 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> protected OperationStatusCheckFailedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
125
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The Output data type. /// </summary> public partial class Output { private string _description; private string _exportName; private string _outputKey; private string _outputValue; /// <summary> /// Gets and sets the property Description. /// <para> /// User defined description associated with the output. /// </para> /// </summary> [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; } /// <summary> /// Gets and sets the property ExportName. /// <para> /// The name of the export associated with the output. /// </para> /// </summary> public string ExportName { get { return this._exportName; } set { this._exportName = value; } } // Check to see if ExportName property is set internal bool IsSetExportName() { return this._exportName != null; } /// <summary> /// Gets and sets the property OutputKey. /// <para> /// The key associated with the output. /// </para> /// </summary> public string OutputKey { get { return this._outputKey; } set { this._outputKey = value; } } // Check to see if OutputKey property is set internal bool IsSetOutputKey() { return this._outputKey != null; } /// <summary> /// Gets and sets the property OutputValue. /// <para> /// The value associated with the output. /// </para> /// </summary> public string OutputValue { get { return this._outputValue; } set { this._outputValue = value; } } // Check to see if OutputValue property is set internal bool IsSetOutputValue() { return this._outputValue != null; } } }
115
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The Parameter data type. /// </summary> public partial class Parameter { private string _parameterKey; private string _parameterValue; private string _resolvedValue; private bool? _usePreviousValue; /// <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, CloudFormation uses the default value that's specified in your /// template. /// </para> /// </summary> public string ParameterKey { get { return this._parameterKey; } set { this._parameterKey = value; } } // Check to see if ParameterKey property is set internal bool IsSetParameterKey() { return this._parameterKey != null; } /// <summary> /// Gets and sets the property ParameterValue. /// <para> /// The input value associated with the parameter. /// </para> /// </summary> public string ParameterValue { get { return this._parameterValue; } set { this._parameterValue = value; } } // Check to see if ParameterValue property is set internal bool IsSetParameterValue() { return this._parameterValue != null; } /// <summary> /// Gets and sets the property ResolvedValue. /// <para> /// Read-only. The value that corresponds to a SSM parameter key. This field is returned /// only for <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html#aws-ssm-parameter-types"> /// SSM</a> parameter types in the template. /// </para> /// </summary> public string ResolvedValue { get { return this._resolvedValue; } set { this._resolvedValue = value; } } // Check to see if ResolvedValue property is set internal bool IsSetResolvedValue() { return this._resolvedValue != null; } /// <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> public bool UsePreviousValue { get { return this._usePreviousValue.GetValueOrDefault(); } set { this._usePreviousValue = value; } } // Check to see if UsePreviousValue property is set internal bool IsSetUsePreviousValue() { return this._usePreviousValue.HasValue; } } }
120
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// A set of criteria that CloudFormation uses to validate parameter values. Although /// other constraints might be defined in the stack template, CloudFormation returns only /// the <code>AllowedValues</code> property. /// </summary> public partial class ParameterConstraints { private List<string> _allowedValues = new List<string>(); /// <summary> /// Gets and sets the property AllowedValues. /// <para> /// A list of values that are permitted for a parameter. /// </para> /// </summary> public List<string> AllowedValues { get { return this._allowedValues; } set { this._allowedValues = value; } } // Check to see if AllowedValues property is set internal bool IsSetAllowedValues() { return this._allowedValues != null && this._allowedValues.Count > 0; } } }
59
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The ParameterDeclaration data type. /// </summary> public partial class ParameterDeclaration { private string _defaultValue; private string _description; private bool? _noEcho; private ParameterConstraints _parameterConstraints; private string _parameterKey; private string _parameterType; /// <summary> /// Gets and sets the property DefaultValue. /// <para> /// The default value of the parameter. /// </para> /// </summary> public string DefaultValue { get { return this._defaultValue; } set { this._defaultValue = value; } } // Check to see if DefaultValue property is set internal bool IsSetDefaultValue() { return this._defaultValue != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description that's associate with the parameter. /// </para> /// </summary> [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; } /// <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 Amazon Web Services Management Console. /// </para> /// </summary> public bool NoEcho { get { return this._noEcho.GetValueOrDefault(); } set { this._noEcho = value; } } // Check to see if NoEcho property is set internal bool IsSetNoEcho() { return this._noEcho.HasValue; } /// <summary> /// Gets and sets the property ParameterConstraints. /// <para> /// The criteria that CloudFormation uses to validate parameter values. /// </para> /// </summary> public ParameterConstraints ParameterConstraints { get { return this._parameterConstraints; } set { this._parameterConstraints = value; } } // Check to see if ParameterConstraints property is set internal bool IsSetParameterConstraints() { return this._parameterConstraints != null; } /// <summary> /// Gets and sets the property ParameterKey. /// <para> /// The name that's associated with the parameter. /// </para> /// </summary> public string ParameterKey { get { return this._parameterKey; } set { this._parameterKey = value; } } // Check to see if ParameterKey property is set internal bool IsSetParameterKey() { return this._parameterKey != null; } /// <summary> /// Gets and sets the property ParameterType. /// <para> /// The type of parameter. /// </para> /// </summary> public string ParameterType { get { return this._parameterType; } set { this._parameterType = value; } } // Check to see if ParameterType property is set internal bool IsSetParameterType() { return this._parameterType != null; } } }
154
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Context information that enables CloudFormation to uniquely identify a resource. CloudFormation /// uses context key-value pairs in cases where a resource's logical and physical IDs /// aren't enough to uniquely identify that resource. Each context key-value pair specifies /// a resource that contains the targeted resource. /// </summary> public partial class PhysicalResourceIdContextKeyValuePair { private string _key; private string _value; /// <summary> /// Gets and sets the property Key. /// <para> /// The resource context key. /// </para> /// </summary> [AWSProperty(Required=true)] public string Key { get { return this._key; } set { this._key = value; } } // Check to see if Key property is set internal bool IsSetKey() { return this._key != null; } /// <summary> /// Gets and sets the property Value. /// <para> /// The resource context value. /// </para> /// </summary> [AWSProperty(Required=true)] public string Value { get { return this._value; } set { this._value = value; } } // Check to see if Value property is set internal bool IsSetValue() { return this._value != null; } } }
81
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Information about a resource property whose actual value differs from its expected /// value, as defined in the stack template and any values specified as template parameters. /// These will be present only for resources whose <code>StackResourceDriftStatus</code> /// is <code>MODIFIED</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting /// Unregulated Configuration Changes to Stacks and Resources</a>. /// </summary> public partial class PropertyDifference { private string _actualValue; private DifferenceType _differenceType; private string _expectedValue; private string _propertyPath; /// <summary> /// Gets and sets the property ActualValue. /// <para> /// The actual property value of the resource property. /// </para> /// </summary> [AWSProperty(Required=true)] public string ActualValue { get { return this._actualValue; } set { this._actualValue = value; } } // Check to see if ActualValue property is set internal bool IsSetActualValue() { return this._actualValue != null; } /// <summary> /// Gets and sets the property DifferenceType. /// <para> /// The type of property difference. /// </para> /// <ul> <li> /// <para> /// <code>ADD</code>: A value has been added to a resource property that's an array or /// list data type. /// </para> /// </li> <li> /// <para> /// <code>REMOVE</code>: The property has been removed from the current resource configuration. /// </para> /// </li> <li> /// <para> /// <code>NOT_EQUAL</code>: The current property value differs from its expected value /// (as defined in the stack template and any values specified as template parameters). /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true)] public DifferenceType DifferenceType { get { return this._differenceType; } set { this._differenceType = value; } } // Check to see if DifferenceType property is set internal bool IsSetDifferenceType() { return this._differenceType != null; } /// <summary> /// Gets and sets the property ExpectedValue. /// <para> /// The expected property value of the resource property, as defined in the stack template /// and any values specified as template parameters. /// </para> /// </summary> [AWSProperty(Required=true)] public string ExpectedValue { get { return this._expectedValue; } set { this._expectedValue = value; } } // Check to see if ExpectedValue property is set internal bool IsSetExpectedValue() { return this._expectedValue != null; } /// <summary> /// Gets and sets the property PropertyPath. /// <para> /// The fully-qualified path to the resource property. /// </para> /// </summary> [AWSProperty(Required=true)] public string PropertyPath { get { return this._propertyPath; } set { this._propertyPath = value; } } // Check to see if PropertyPath property is set internal bool IsSetPropertyPath() { return this._propertyPath != null; } } }
138
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the PublishType operation. /// Publishes the specified extension to the CloudFormation registry as a public extension /// in this Region. Public extensions are available for use by all CloudFormation users. /// For more information about publishing extensions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Publishing /// extensions to make them available for public use</a> in the <i>CloudFormation CLI /// User Guide</i>. /// /// /// <para> /// To publish an extension, you must be registered as a publisher with CloudFormation. /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterPublisher.html">RegisterPublisher</a>. /// </para> /// </summary> public partial class PublishTypeRequest : AmazonCloudFormationRequest { private string _arn; private string _publicVersionNumber; private ThirdPartyType _type; private string _typeName; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the extension. /// </para> /// /// <para> /// Conditional: You must specify <code>Arn</code>, or <code>TypeName</code> and <code>Type</code>. /// </para> /// </summary> [AWSProperty(Max=1024)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property PublicVersionNumber. /// <para> /// The version number to assign to this version of the extension. /// </para> /// /// <para> /// Use the following format, and adhere to semantic versioning when assigning a version /// number to your extension: /// </para> /// /// <para> /// <code>MAJOR.MINOR.PATCH</code> /// </para> /// /// <para> /// For more information, see <a href="https://semver.org/">Semantic Versioning 2.0.0</a>. /// </para> /// /// <para> /// If you don't specify a version number, CloudFormation increments the version number /// by one minor version release. /// </para> /// /// <para> /// You cannot specify a version number the first time you publish a type. CloudFormation /// automatically sets the first version number to be <code>1.0.0</code>. /// </para> /// </summary> [AWSProperty(Min=5)] public string PublicVersionNumber { get { return this._publicVersionNumber; } set { this._publicVersionNumber = value; } } // Check to see if PublicVersionNumber property is set internal bool IsSetPublicVersionNumber() { return this._publicVersionNumber != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of the extension. /// </para> /// /// <para> /// Conditional: You must specify <code>Arn</code>, or <code>TypeName</code> and <code>Type</code>. /// </para> /// </summary> public ThirdPartyType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension. /// </para> /// /// <para> /// Conditional: You must specify <code>Arn</code>, or <code>TypeName</code> and <code>Type</code>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
163
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the PublishType operation. /// </summary> public partial class PublishTypeResponse : AmazonWebServiceResponse { private string _publicTypeArn; /// <summary> /// Gets and sets the property PublicTypeArn. /// <para> /// The Amazon Resource Name (ARN) assigned to the public extension upon publication. /// </para> /// </summary> [AWSProperty(Max=1024)] public string PublicTypeArn { get { return this._publicTypeArn; } set { this._publicTypeArn = value; } } // Check to see if PublicTypeArn property is set internal bool IsSetPublicTypeArn() { return this._publicTypeArn != null; } } }
58
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the RecordHandlerProgress operation. /// Reports progress of a resource handler to CloudFormation. /// /// /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. Don't use this API in your code. /// </para> /// </summary> public partial class RecordHandlerProgressRequest : AmazonCloudFormationRequest { private string _bearerToken; private string _clientRequestToken; private OperationStatus _currentOperationStatus; private HandlerErrorCode _errorCode; private OperationStatus _operationStatus; private string _resourceModel; private string _statusMessage; /// <summary> /// Gets and sets the property BearerToken. /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string BearerToken { get { return this._bearerToken; } set { this._bearerToken = value; } } // Check to see if BearerToken property is set internal bool IsSetBearerToken() { return this._bearerToken != null; } /// <summary> /// Gets and sets the property ClientRequestToken. /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string ClientRequestToken { get { return this._clientRequestToken; } set { this._clientRequestToken = value; } } // Check to see if ClientRequestToken property is set internal bool IsSetClientRequestToken() { return this._clientRequestToken != null; } /// <summary> /// Gets and sets the property CurrentOperationStatus. /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. /// </para> /// </summary> public OperationStatus CurrentOperationStatus { get { return this._currentOperationStatus; } set { this._currentOperationStatus = value; } } // Check to see if CurrentOperationStatus property is set internal bool IsSetCurrentOperationStatus() { return this._currentOperationStatus != null; } /// <summary> /// Gets and sets the property ErrorCode. /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. /// </para> /// </summary> public HandlerErrorCode ErrorCode { get { return this._errorCode; } set { this._errorCode = value; } } // Check to see if ErrorCode property is set internal bool IsSetErrorCode() { return this._errorCode != null; } /// <summary> /// Gets and sets the property OperationStatus. /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. /// </para> /// </summary> [AWSProperty(Required=true)] public OperationStatus OperationStatus { get { return this._operationStatus; } set { this._operationStatus = value; } } // Check to see if OperationStatus property is set internal bool IsSetOperationStatus() { return this._operationStatus != null; } /// <summary> /// Gets and sets the property ResourceModel. /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. /// </para> /// </summary> [AWSProperty(Min=1, Max=16384)] public string ResourceModel { get { return this._resourceModel; } set { this._resourceModel = value; } } // Check to see if ResourceModel property is set internal bool IsSetResourceModel() { return this._resourceModel != null; } /// <summary> /// Gets and sets the property StatusMessage. /// <para> /// Reserved for use by the <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/what-is-cloudformation-cli.html">CloudFormation /// CLI</a>. /// </para> /// </summary> [AWSProperty(Max=1024)] public string StatusMessage { get { return this._statusMessage; } set { this._statusMessage = value; } } // Check to see if StatusMessage property is set internal bool IsSetStatusMessage() { return this._statusMessage != null; } } }
190
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the RecordHandlerProgress operation. /// </summary> public partial class RecordHandlerProgressResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the RegisterPublisher operation. /// Registers your account as a publisher of public extensions in the CloudFormation registry. /// Public extensions are available for use by all CloudFormation users. This publisher /// ID applies to your account in all Amazon Web Services Regions. /// /// /// <para> /// For information about requirements for registering as a public extension publisher, /// see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs">Registering /// your account to publish CloudFormation extensions</a> in the <i>CloudFormation CLI /// User Guide</i>. /// </para> /// </summary> public partial class RegisterPublisherRequest : AmazonCloudFormationRequest { private bool? _acceptTermsAndConditions; private string _connectionArn; /// <summary> /// Gets and sets the property AcceptTermsAndConditions. /// <para> /// Whether you accept the <a href="https://cloudformation-registry-documents.s3.amazonaws.com/Terms_and_Conditions_for_AWS_CloudFormation_Registry_Publishers.pdf">Terms /// and Conditions</a> for publishing extensions in the CloudFormation registry. You must /// accept the terms and conditions in order to register to publish public extensions /// to the CloudFormation registry. /// </para> /// /// <para> /// The default is <code>false</code>. /// </para> /// </summary> public bool AcceptTermsAndConditions { get { return this._acceptTermsAndConditions.GetValueOrDefault(); } set { this._acceptTermsAndConditions = value; } } // Check to see if AcceptTermsAndConditions property is set internal bool IsSetAcceptTermsAndConditions() { return this._acceptTermsAndConditions.HasValue; } /// <summary> /// Gets and sets the property ConnectionArn. /// <para> /// If you are using a Bitbucket or GitHub account for identity verification, the Amazon /// Resource Name (ARN) for your connection to that account. /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs">Registering /// your account to publish CloudFormation extensions</a> in the <i>CloudFormation CLI /// User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string ConnectionArn { get { return this._connectionArn; } set { this._connectionArn = value; } } // Check to see if ConnectionArn property is set internal bool IsSetConnectionArn() { return this._connectionArn != null; } } }
102
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the RegisterPublisher operation. /// </summary> public partial class RegisterPublisherResponse : AmazonWebServiceResponse { private string _publisherId; /// <summary> /// Gets and sets the property PublisherId. /// <para> /// The ID assigned this account by CloudFormation for publishing extensions. /// </para> /// </summary> [AWSProperty(Min=1, Max=40)] public string PublisherId { get { return this._publisherId; } set { this._publisherId = value; } } // Check to see if PublisherId property is set internal bool IsSetPublisherId() { return this._publisherId != null; } } }
58
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the RegisterType operation. /// Registers an extension with the CloudFormation service. Registering an extension makes /// it available for use in CloudFormation templates in your Amazon Web Services account, /// and includes: /// /// <ul> <li> /// <para> /// Validating the extension schema. /// </para> /// </li> <li> /// <para> /// Determining which handlers, if any, have been specified for the extension. /// </para> /// </li> <li> /// <para> /// Making the extension available for use in your account. /// </para> /// </li> </ul> /// <para> /// For more information about how to develop extensions and ready them for registration, /// see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html">Creating /// Resource Providers</a> in the <i>CloudFormation CLI User Guide</i>. /// </para> /// /// <para> /// You can have a maximum of 50 resource extension versions registered at a time. This /// maximum is per account and per Region. Use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeregisterType.html">DeregisterType</a> /// to deregister specific extension versions if necessary. /// </para> /// /// <para> /// Once you have initiated a registration request using <a>RegisterType</a>, you can /// use <a>DescribeTypeRegistration</a> to monitor the progress of the registration request. /// </para> /// /// <para> /// Once you have registered a private extension in your account and Region, use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html">SetTypeConfiguration</a> /// to specify configuration properties for the extension. For more information, see <a /// href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration">Configuring /// extensions at the account level</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public partial class RegisterTypeRequest : AmazonCloudFormationRequest { private string _clientRequestToken; private string _executionRoleArn; private LoggingConfig _loggingConfig; private string _schemaHandlerPackage; private RegistryType _type; private string _typeName; /// <summary> /// Gets and sets the property ClientRequestToken. /// <para> /// A unique identifier that acts as an idempotency key for this registration request. /// Specifying a client request token prevents CloudFormation from generating more than /// one version of an extension from the same registration request, even if the request /// is submitted multiple times. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string ClientRequestToken { get { return this._clientRequestToken; } set { this._clientRequestToken = value; } } // Check to see if ClientRequestToken property is set internal bool IsSetClientRequestToken() { return this._clientRequestToken != null; } /// <summary> /// Gets and sets the property ExecutionRoleArn. /// <para> /// The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking /// the extension. /// </para> /// /// <para> /// For CloudFormation to assume the specified execution role, the role must contain a /// trust relationship with the CloudFormation service principle (<code>resources.cloudformation.amazonaws.com</code>). /// For more information about adding trust relationships, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy">Modifying /// a role trust policy</a> in the <i>Identity and Access Management User Guide</i>. /// </para> /// /// <para> /// If your extension calls Amazon Web Services APIs in any of its handlers, you must /// create an <i> <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.html">IAM /// execution role</a> </i> that includes the necessary permissions to call those Amazon /// Web Services APIs, and provision that execution role in your account. When CloudFormation /// needs to invoke the resource type handler, CloudFormation assumes this execution role /// to create a temporary session token, which it then passes to the resource type handler, /// thereby supplying your resource type with the appropriate credentials. /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string ExecutionRoleArn { get { return this._executionRoleArn; } set { this._executionRoleArn = value; } } // Check to see if ExecutionRoleArn property is set internal bool IsSetExecutionRoleArn() { return this._executionRoleArn != null; } /// <summary> /// Gets and sets the property LoggingConfig. /// <para> /// Specifies logging configuration information for an extension. /// </para> /// </summary> public LoggingConfig LoggingConfig { get { return this._loggingConfig; } set { this._loggingConfig = value; } } // Check to see if LoggingConfig property is set internal bool IsSetLoggingConfig() { return this._loggingConfig != null; } /// <summary> /// Gets and sets the property SchemaHandlerPackage. /// <para> /// A URL to the S3 bucket containing the extension project package that contains the /// necessary files for the extension you want to register. /// </para> /// /// <para> /// For information about generating a schema handler package for the extension you want /// to register, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-cli-submit.html">submit</a> /// in the <i>CloudFormation CLI User Guide</i>. /// </para> /// <note> /// <para> /// The user registering the extension must be able to access the package in the S3 bucket. /// That's, the user needs to have <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html">GetObject</a> /// permissions for the schema handler package. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html">Actions, /// Resources, and Condition Keys for Amazon S3</a> in the <i>Identity and Access Management /// User Guide</i>. /// </para> /// </note> /// </summary> [AWSProperty(Required=true, Min=1, Max=4096)] public string SchemaHandlerPackage { get { return this._schemaHandlerPackage; } set { this._schemaHandlerPackage = value; } } // Check to see if SchemaHandlerPackage property is set internal bool IsSetSchemaHandlerPackage() { return this._schemaHandlerPackage != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The kind of extension. /// </para> /// </summary> public RegistryType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension being registered. /// </para> /// /// <para> /// We suggest that extension names adhere to the following patterns: /// </para> /// <ul> <li> /// <para> /// For resource types, <i>company_or_organization</i>::<i>service</i>::<i>type</i>. /// </para> /// </li> <li> /// <para> /// For modules, <i>company_or_organization</i>::<i>service</i>::<i>type</i>::MODULE. /// </para> /// </li> <li> /// <para> /// For hooks, <i>MyCompany</i>::<i>Testing</i>::<i>MyTestHook</i>. /// </para> /// </li> </ul> <note> /// <para> /// The following organization namespaces are reserved and can't be used in your extension /// names: /// </para> /// <ul> <li> /// <para> /// <code>Alexa</code> /// </para> /// </li> <li> /// <para> /// <code>AMZN</code> /// </para> /// </li> <li> /// <para> /// <code>Amazon</code> /// </para> /// </li> <li> /// <para> /// <code>AWS</code> /// </para> /// </li> <li> /// <para> /// <code>Custom</code> /// </para> /// </li> <li> /// <para> /// <code>Dev</code> /// </para> /// </li> </ul> </note> /// </summary> [AWSProperty(Required=true, Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
279
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the RegisterType operation. /// </summary> public partial class RegisterTypeResponse : AmazonWebServiceResponse { private string _registrationToken; /// <summary> /// Gets and sets the property RegistrationToken. /// <para> /// The identifier for this registration request. /// </para> /// /// <para> /// Use this registration token when calling <a>DescribeTypeRegistration</a>, which returns /// information about the status and IDs of the extension registration. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string RegistrationToken { get { return this._registrationToken; } set { this._registrationToken = value; } } // Check to see if RegistrationToken property is set internal bool IsSetRegistrationToken() { return this._registrationToken != null; } } }
63
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// For extensions that are modules, a public third-party extension that must be activated /// in your account in order for the module itself to be activated. /// /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html#module-enabling">Activating /// public modules for use in your account</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public partial class RequiredActivatedType { private string _originalTypeName; private string _publisherId; private List<int> _supportedMajorVersions = new List<int>(); private string _typeNameAlias; /// <summary> /// Gets and sets the property OriginalTypeName. /// <para> /// The type name of the public extension. /// </para> /// /// <para> /// If you specified a <code>TypeNameAlias</code> when enabling the extension in this /// account and Region, CloudFormation treats that alias as the extension's type name /// within the account and Region, not the type name of the public extension. For more /// information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-alias">Specifying /// aliases to refer to extensions</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string OriginalTypeName { get { return this._originalTypeName; } set { this._originalTypeName = value; } } // Check to see if OriginalTypeName property is set internal bool IsSetOriginalTypeName() { return this._originalTypeName != null; } /// <summary> /// Gets and sets the property PublisherId. /// <para> /// The publisher ID of the extension publisher. /// </para> /// </summary> [AWSProperty(Min=1, Max=40)] public string PublisherId { get { return this._publisherId; } set { this._publisherId = value; } } // Check to see if PublisherId property is set internal bool IsSetPublisherId() { return this._publisherId != null; } /// <summary> /// Gets and sets the property SupportedMajorVersions. /// <para> /// A list of the major versions of the extension type that the macro supports. /// </para> /// </summary> public List<int> SupportedMajorVersions { get { return this._supportedMajorVersions; } set { this._supportedMajorVersions = value; } } // Check to see if SupportedMajorVersions property is set internal bool IsSetSupportedMajorVersions() { return this._supportedMajorVersions != null && this._supportedMajorVersions.Count > 0; } /// <summary> /// Gets and sets the property TypeNameAlias. /// <para> /// An alias assigned to the public extension, in this account and Region. If you specify /// an alias for the extension, CloudFormation treats the alias as the extension type /// name within this account and Region. You must use the alias to refer to the extension /// in your templates, API calls, and CloudFormation console. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeNameAlias { get { return this._typeNameAlias; } set { this._typeNameAlias = value; } } // Check to see if TypeNameAlias property is set internal bool IsSetTypeNameAlias() { return this._typeNameAlias != null; } } }
135
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The <code>ResourceChange</code> structure describes the resource and the action that /// CloudFormation will perform on it if you execute this change set. /// </summary> public partial class ResourceChange { private ChangeAction _action; private string _changeSetId; private List<ResourceChangeDetail> _details = new List<ResourceChangeDetail>(); private string _logicalResourceId; private ModuleInfo _moduleInfo; private string _physicalResourceId; private Replacement _replacement; private string _resourceType; private List<string> _scope = new List<string>(); /// <summary> /// Gets and sets the property Action. /// <para> /// The action that CloudFormation takes on the resource, such as <code>Add</code> (adds /// a new resource), <code>Modify</code> (changes a resource), <code>Remove</code> (deletes /// a resource), <code>Import</code> (imports a resource), or <code>Dynamic</code> (exact /// action for the resource can't be determined). /// </para> /// </summary> public ChangeAction Action { get { return this._action; } set { this._action = value; } } // Check to see if Action property is set internal bool IsSetAction() { return this._action != null; } /// <summary> /// Gets and sets the property ChangeSetId. /// <para> /// The change set ID of the nested change set. /// </para> /// </summary> [AWSProperty(Min=1)] public string ChangeSetId { get { return this._changeSetId; } set { this._changeSetId = value; } } // Check to see if ChangeSetId property is set internal bool IsSetChangeSetId() { return this._changeSetId != null; } /// <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 CloudFormation will make to the resource. /// </para> /// </summary> public List<ResourceChangeDetail> Details { get { return this._details; } set { this._details = value; } } // Check to see if Details property is set internal bool IsSetDetails() { return this._details != null && this._details.Count > 0; } /// <summary> /// Gets and sets the property LogicalResourceId. /// <para> /// The resource's logical ID, which is defined in the stack's template. /// </para> /// </summary> public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <summary> /// Gets and sets the property ModuleInfo. /// <para> /// Contains information about the module from which the resource was created, if the /// resource was created from a module included in the stack template. /// </para> /// </summary> public ModuleInfo ModuleInfo { get { return this._moduleInfo; } set { this._moduleInfo = value; } } // Check to see if ModuleInfo property is set internal bool IsSetModuleInfo() { return this._moduleInfo != null; } /// <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> public string PhysicalResourceId { get { return this._physicalResourceId; } set { this._physicalResourceId = value; } } // Check to see if PhysicalResourceId property is set internal bool IsSetPhysicalResourceId() { return this._physicalResourceId != null; } /// <summary> /// Gets and sets the property Replacement. /// <para> /// For the <code>Modify</code> action, indicates whether 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> public Replacement Replacement { get { return this._replacement; } set { this._replacement = value; } } // Check to see if Replacement property is set internal bool IsSetReplacement() { return this._replacement != null; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// The type of CloudFormation resource, such as <code>AWS::S3::Bucket</code>. /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } /// <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> public List<string> Scope { get { return this._scope; } set { this._scope = value; } } // Check to see if Scope property is set internal bool IsSetScope() { return this._scope != null && this._scope.Count > 0; } } }
234
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// For a resource with <code>Modify</code> as the action, the <code>ResourceChange</code> /// structure describes the changes CloudFormation will make to that resource. /// </summary> public partial class ResourceChangeDetail { private string _causingEntity; private ChangeSource _changeSource; private EvaluationType _evaluation; private ResourceTargetDefinition _target; /// <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's 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> public string CausingEntity { get { return this._causingEntity; } set { this._causingEntity = value; } } // Check to see if CausingEntity property is set internal bool IsSetCausingEntity() { return this._causingEntity != null; } /// <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, 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 CloudFormation until you run an update on the parent stack. /// </para> /// </li> </ul> /// </summary> public ChangeSource ChangeSource { get { return this._changeSource; } set { this._changeSource = value; } } // Check to see if ChangeSource property is set internal bool IsSetChangeSource() { return this._changeSource != null; } /// <summary> /// Gets and sets the property Evaluation. /// <para> /// Indicates whether 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, 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, 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, can't 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's 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> public EvaluationType Evaluation { get { return this._evaluation; } set { this._evaluation = value; } } // Check to see if Evaluation property is set internal bool IsSetEvaluation() { return this._evaluation != null; } /// <summary> /// Gets and sets the property Target. /// <para> /// A <code>ResourceTargetDefinition</code> structure that describes the field that CloudFormation /// will change and whether the resource will be recreated. /// </para> /// </summary> public ResourceTargetDefinition Target { get { return this._target; } set { this._target = value; } } // Check to see if Target property is set internal bool IsSetTarget() { return this._target != null; } } }
175
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Describes the target resources of a specific type in your import template (for example, /// all <code>AWS::S3::Bucket</code> resources) and the properties you can provide during /// the import to identify resources of that type. /// </summary> public partial class ResourceIdentifierSummary { private List<string> _logicalResourceIds = new List<string>(); private List<string> _resourceIdentifiers = new List<string>(); private string _resourceType; /// <summary> /// Gets and sets the property LogicalResourceIds. /// <para> /// The logical IDs of the target resources of the specified <code>ResourceType</code>, /// as defined in the import template. /// </para> /// </summary> [AWSProperty(Min=1, Max=200)] public List<string> LogicalResourceIds { get { return this._logicalResourceIds; } set { this._logicalResourceIds = value; } } // Check to see if LogicalResourceIds property is set internal bool IsSetLogicalResourceIds() { return this._logicalResourceIds != null && this._logicalResourceIds.Count > 0; } /// <summary> /// Gets and sets the property ResourceIdentifiers. /// <para> /// The resource properties you can provide during the import to identify your target /// resources. For example, <code>BucketName</code> is a possible identifier property /// for <code>AWS::S3::Bucket</code> resources. /// </para> /// </summary> public List<string> ResourceIdentifiers { get { return this._resourceIdentifiers; } set { this._resourceIdentifiers = value; } } // Check to see if ResourceIdentifiers property is set internal bool IsSetResourceIdentifiers() { return this._resourceIdentifiers != null && this._resourceIdentifiers.Count > 0; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// The template resource type of the target resources, such as <code>AWS::S3::Bucket</code>. /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } } }
102
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The field that CloudFormation will change, such as the name of a resource's property, /// and whether the resource will be recreated. /// </summary> public partial class ResourceTargetDefinition { private ResourceAttribute _attribute; private string _name; private RequiresRecreation _requiresRecreation; /// <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> public ResourceAttribute Attribute { get { return this._attribute; } set { this._attribute = value; } } // Check to see if Attribute property is set internal bool IsSetAttribute() { return this._attribute != null; } /// <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> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <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="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">property</a> /// in the CloudFormation User Guide. /// </para> /// </summary> public RequiresRecreation RequiresRecreation { get { return this._requiresRecreation; } set { this._requiresRecreation = value; } } // Check to see if RequiresRecreation property is set internal bool IsSetRequiresRecreation() { return this._requiresRecreation != null; } } }
102
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Describes the target resource of an import operation. /// </summary> public partial class ResourceToImport { private string _logicalResourceId; private Dictionary<string, string> _resourceIdentifier = new Dictionary<string, string>(); private string _resourceType; /// <summary> /// Gets and sets the property LogicalResourceId. /// <para> /// The logical ID of the target resource as specified in the template. /// </para> /// </summary> [AWSProperty(Required=true)] public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <summary> /// Gets and sets the property ResourceIdentifier. /// <para> /// A key-value pair that identifies the target resource. The key is an identifier property /// (for example, <code>BucketName</code> for <code>AWS::S3::Bucket</code> resources) /// and the value is the actual property value (for example, <code>MyS3Bucket</code>). /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=256)] public Dictionary<string, string> ResourceIdentifier { get { return this._resourceIdentifier; } set { this._resourceIdentifier = value; } } // Check to see if ResourceIdentifier property is set internal bool IsSetResourceIdentifier() { return this._resourceIdentifier != null && this._resourceIdentifier.Count > 0; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// The type of resource to import into your stack, such as <code>AWS::S3::Bucket</code>. /// For a list of supported resource types, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import-supported-resources.html">Resources /// that support import operations</a> in the CloudFormation User Guide. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } } }
102
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Structure containing the rollback triggers for CloudFormation to monitor during stack /// creation and updating operations, and for the specified monitoring period afterwards. /// /// /// <para> /// Rollback triggers enable you to have CloudFormation monitor the state of your application /// during stack creation and updating, and to roll back that operation if the application /// breaches the threshold of any of the alarms you've specified. For more information, /// see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-rollback-triggers.html">Monitor /// and Roll Back Stack Operations</a>. /// </para> /// </summary> public partial class RollbackConfiguration { private int? _monitoringTimeInMinutes; private List<RollbackTrigger> _rollbackTriggers = new List<RollbackTrigger>(); /// <summary> /// Gets and sets the property MonitoringTimeInMinutes. /// <para> /// The amount of time, in minutes, during which CloudFormation should monitor all the /// rollback triggers after the stack creation or update operation deploys all necessary /// resources. /// </para> /// /// <para> /// The default is 0 minutes. /// </para> /// /// <para> /// If you specify a monitoring period but don't specify any rollback triggers, CloudFormation /// still waits the specified period of time before cleaning up old resources after update /// operations. You can use this monitoring period to perform any manual stack validation /// desired, and manually cancel the stack creation or update (using <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_CancelUpdateStack.html">CancelUpdateStack</a>, /// for example) as necessary. /// </para> /// /// <para> /// If you specify 0 for this parameter, CloudFormation still monitors the specified rollback /// triggers during stack creation and update operations. Then, for update operations, /// it begins disposing of old resources immediately once the operation completes. /// </para> /// </summary> [AWSProperty(Min=0, Max=180)] public int MonitoringTimeInMinutes { get { return this._monitoringTimeInMinutes.GetValueOrDefault(); } set { this._monitoringTimeInMinutes = value; } } // Check to see if MonitoringTimeInMinutes property is set internal bool IsSetMonitoringTimeInMinutes() { return this._monitoringTimeInMinutes.HasValue; } /// <summary> /// Gets and sets the property RollbackTriggers. /// <para> /// The triggers to monitor during stack creation or update actions. /// </para> /// /// <para> /// By default, CloudFormation saves the rollback triggers specified for a stack and applies /// them to any subsequent update operations for the stack, unless you specify otherwise. /// If you do specify rollback triggers for this parameter, those triggers replace any /// list of triggers previously specified for the stack. This means: /// </para> /// <ul> <li> /// <para> /// To use the rollback triggers previously specified for this stack, if any, don't specify /// this parameter. /// </para> /// </li> <li> /// <para> /// To specify new or updated rollback triggers, you must specify <i>all</i> the triggers /// that you want used for this stack, even triggers you've specified before (for example, /// when creating the stack or during a previous stack update). Any triggers that you /// don't include in the updated list of triggers are no longer applied to the stack. /// </para> /// </li> <li> /// <para> /// To remove all currently specified triggers, specify an empty list for this parameter. /// </para> /// </li> </ul> /// <para> /// If a specified trigger is missing, the entire stack operation fails and is rolled /// back. /// </para> /// </summary> [AWSProperty(Max=5)] public List<RollbackTrigger> RollbackTriggers { get { return this._rollbackTriggers; } set { this._rollbackTriggers = value; } } // Check to see if RollbackTriggers property is set internal bool IsSetRollbackTriggers() { return this._rollbackTriggers != null && this._rollbackTriggers.Count > 0; } } }
136
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the RollbackStack operation. /// When specifying <code>RollbackStack</code>, you preserve the state of previously provisioned /// resources when an operation fails. You can check the status of the stack through the /// <a>DescribeStacks</a> operation. /// /// /// <para> /// Rolls back the specified stack to the last known stable state from <code>CREATE_FAILED</code> /// or <code>UPDATE_FAILED</code> stack statuses. /// </para> /// /// <para> /// This operation will delete a stack if it doesn't contain a last known stable state. /// A last known stable state includes any status in a <code>*_COMPLETE</code>. This includes /// the following stack statuses. /// </para> /// <ul> <li> /// <para> /// <code>CREATE_COMPLETE</code> /// </para> /// </li> <li> /// <para> /// <code>UPDATE_COMPLETE</code> /// </para> /// </li> <li> /// <para> /// <code>UPDATE_ROLLBACK_COMPLETE</code> /// </para> /// </li> <li> /// <para> /// <code>IMPORT_COMPLETE</code> /// </para> /// </li> <li> /// <para> /// <code>IMPORT_ROLLBACK_COMPLETE</code> /// </para> /// </li> </ul> /// </summary> public partial class RollbackStackRequest : AmazonCloudFormationRequest { private string _clientRequestToken; private string _roleARN; private string _stackName; /// <summary> /// Gets and sets the property ClientRequestToken. /// <para> /// A unique identifier for this <code>RollbackStack</code> request. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string ClientRequestToken { get { return this._clientRequestToken; } set { this._clientRequestToken = value; } } // Check to see if ClientRequestToken property is set internal bool IsSetClientRequestToken() { return this._clientRequestToken != null; } /// <summary> /// Gets and sets the property RoleARN. /// <para> /// The Amazon Resource Name (ARN) of an Identity and Access Management role that CloudFormation /// assumes to rollback the stack. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] public string RoleARN { get { return this._roleARN; } set { this._roleARN = value; } } // Check to see if RoleARN property is set internal bool IsSetRoleARN() { return this._roleARN != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name that's associated with the stack. /// </para> /// </summary> [AWSProperty(Required=true, Min=1)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } } }
135
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the RollbackStack operation. /// </summary> public partial class RollbackStackResponse : AmazonWebServiceResponse { private string _stackId; /// <summary> /// Gets and sets the property StackId. /// <para> /// Unique identifier of the stack. /// </para> /// </summary> public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } } }
57
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// A rollback trigger CloudFormation monitors during creation and updating of stacks. /// If any of the alarms you specify goes to ALARM state during the stack operation or /// within the specified monitoring period afterwards, CloudFormation rolls back the entire /// stack operation. /// </summary> public partial class RollbackTrigger { private string _arn; private string _type; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the rollback trigger. /// </para> /// /// <para> /// If a specified trigger is missing, the entire stack operation fails and is rolled /// back. /// </para> /// </summary> [AWSProperty(Required=true)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The resource type of the rollback trigger. Specify either <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html">AWS::CloudWatch::Alarm</a> /// or <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html">AWS::CloudWatch::CompositeAlarm</a> /// resource types. /// </para> /// </summary> [AWSProperty(Required=true)] public string Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
88
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the SetStackPolicy operation. /// Sets a stack policy for a specified stack. /// </summary> public partial class SetStackPolicyRequest : AmazonCloudFormationRequest { private string _stackName; private string _stackPolicyBody; private string _stackPolicyURL; /// <summary> /// Gets and sets the property StackName. /// <para> /// The name or unique stack ID that you want to associate a policy with. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } /// <summary> /// Gets and sets the property StackPolicyBody. /// <para> /// Structure containing the stack policy body. For more information, go to <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html"> /// Prevent updates to stack resources</a> in the CloudFormation User Guide. You can specify /// either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> parameter, /// but not both. /// </para> /// </summary> [AWSProperty(Min=1, Max=16384)] public string StackPolicyBody { get { return this._stackPolicyBody; } set { this._stackPolicyBody = value; } } // Check to see if StackPolicyBody property is set internal bool IsSetStackPolicyBody() { return this._stackPolicyBody != null; } /// <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 Amazon S3 bucket in the same Amazon Web Services Region /// as the stack. You can specify either the <code>StackPolicyBody</code> or the <code>StackPolicyURL</code> /// parameter, but not both. /// </para> /// </summary> [AWSProperty(Min=1, Max=1350)] public string StackPolicyURL { get { return this._stackPolicyURL; } set { this._stackPolicyURL = value; } } // Check to see if StackPolicyURL property is set internal bool IsSetStackPolicyURL() { return this._stackPolicyURL != null; } } }
105
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the SetStackPolicy operation. /// </summary> public partial class SetStackPolicyResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the SetTypeConfiguration operation. /// Specifies the configuration data for a registered CloudFormation extension, in the /// given account and Region. /// /// /// <para> /// To view the current configuration data for an extension, refer to the <code>ConfigurationSchema</code> /// element of <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a>. /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration">Configuring /// extensions at the account level</a> in the <i>CloudFormation User Guide</i>. /// </para> /// <important> /// <para> /// It's strongly recommended that you use dynamic references to restrict sensitive configuration /// definitions, such as third-party credentials. For more details on dynamic references, /// see <a href="https://docs.aws.amazon.com/">Using dynamic references to specify template /// values</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </important> /// </summary> public partial class SetTypeConfigurationRequest : AmazonCloudFormationRequest { private string _configuration; private string _configurationAlias; private ThirdPartyType _type; private string _typeArn; private string _typeName; /// <summary> /// Gets and sets the property Configuration. /// <para> /// The configuration data for the extension, in this account and Region. /// </para> /// /// <para> /// The configuration data must be formatted as JSON, and validate against the schema /// returned in the <code>ConfigurationSchema</code> response element of <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a>. /// For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration">Defining /// account-level configuration data for an extension</a> in the <i>CloudFormation CLI /// User Guide</i>. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=204800)] public string Configuration { get { return this._configuration; } set { this._configuration = value; } } // Check to see if Configuration property is set internal bool IsSetConfiguration() { return this._configuration != null; } /// <summary> /// Gets and sets the property ConfigurationAlias. /// <para> /// An alias by which to refer to this extension configuration data. /// </para> /// /// <para> /// Conditional: Specifying a configuration alias is required when setting a configuration /// for a resource type extension. /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string ConfigurationAlias { get { return this._configurationAlias; } set { this._configurationAlias = value; } } // Check to see if ConfigurationAlias property is set internal bool IsSetConfigurationAlias() { return this._configurationAlias != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of extension. /// </para> /// /// <para> /// Conditional: You must specify <code>ConfigurationArn</code>, or <code>Type</code> /// and <code>TypeName</code>. /// </para> /// </summary> public ThirdPartyType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeArn. /// <para> /// The Amazon Resource Name (ARN) for the extension, in this account and Region. /// </para> /// /// <para> /// For public extensions, this will be the ARN assigned when you <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">activate /// the type</a> in this account and Region. For private extensions, this will be the /// ARN assigned when you <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">register /// the type</a> in this account and Region. /// </para> /// /// <para> /// Do not include the extension versions suffix at the end of the ARN. You can set the /// configuration for an extension, but not for a specific extension version. /// </para> /// </summary> [AWSProperty(Max=1024)] public string TypeArn { get { return this._typeArn; } set { this._typeArn = value; } } // Check to see if TypeArn property is set internal bool IsSetTypeArn() { return this._typeArn != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension. /// </para> /// /// <para> /// Conditional: You must specify <code>ConfigurationArn</code>, or <code>Type</code> /// and <code>TypeName</code>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
190
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the SetTypeConfiguration operation. /// </summary> public partial class SetTypeConfigurationResponse : AmazonWebServiceResponse { private string _configurationArn; /// <summary> /// Gets and sets the property ConfigurationArn. /// <para> /// The Amazon Resource Name (ARN) for the configuration data, in this account and Region. /// </para> /// /// <para> /// Conditional: You must specify <code>ConfigurationArn</code>, or <code>Type</code> /// and <code>TypeName</code>. /// </para> /// </summary> [AWSProperty(Max=1024)] public string ConfigurationArn { get { return this._configurationArn; } set { this._configurationArn = value; } } // Check to see if ConfigurationArn property is set internal bool IsSetConfigurationArn() { return this._configurationArn != null; } } }
63
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the SetTypeDefaultVersion operation. /// Specify the default version of an extension. The default version of an extension will /// be used in CloudFormation operations. /// </summary> public partial class SetTypeDefaultVersionRequest : AmazonCloudFormationRequest { private string _arn; private RegistryType _type; private string _typeName; private string _versionId; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the extension for which you want version summary /// information. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> [AWSProperty(Max=1024)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The kind of extension. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> public RegistryType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension. /// </para> /// /// <para> /// Conditional: You must specify either <code>TypeName</code> and <code>Type</code>, /// or <code>Arn</code>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } /// <summary> /// Gets and sets the property VersionId. /// <para> /// The ID of a specific version of the extension. The version ID is the value at the /// end of the Amazon Resource Name (ARN) assigned to the extension version when it is /// registered. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string VersionId { get { return this._versionId; } set { this._versionId = value; } } // Check to see if VersionId property is set internal bool IsSetVersionId() { return this._versionId != null; } } }
137
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the SetTypeDefaultVersion operation. /// </summary> public partial class SetTypeDefaultVersionResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 { /// <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 <code>SignalResource</code> operation in conjunction with a creation policy /// or update policy. 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 <code>SignalResource</code> operation is useful in cases where you want to send /// signals from anywhere other than an Amazon EC2 instance. /// </summary> public partial class SignalResourceRequest : AmazonCloudFormationRequest { private string _logicalResourceId; private string _stackName; private ResourceSignalStatus _status; private string _uniqueId; /// <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> [AWSProperty(Required=true)] public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <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> [AWSProperty(Required=true, Min=1)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the signal, which is either success or failure. A failure signal causes /// CloudFormation to immediately fail the stack creation or update. /// </para> /// </summary> [AWSProperty(Required=true)] public ResourceSignalStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } /// <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> [AWSProperty(Required=true, Min=1, Max=64)] public string UniqueId { get { return this._uniqueId; } set { this._uniqueId = value; } } // Check to see if UniqueId property is set internal bool IsSetUniqueId() { return this._uniqueId != null; } } }
129
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the SignalResource operation. /// </summary> public partial class SignalResourceResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The Stack data type. /// </summary> public partial class Stack { private List<string> _capabilities = new List<string>(); private string _changeSetId; private DateTime? _creationTime; private DateTime? _deletionTime; private string _description; private bool? _disableRollback; private StackDriftInformation _driftInformation; private bool? _enableTerminationProtection; private DateTime? _lastUpdatedTime; private List<string> _notificationARNs = new List<string>(); private List<Output> _outputs = new List<Output>(); private List<Parameter> _parameters = new List<Parameter>(); private string _parentId; private string _roleARN; private RollbackConfiguration _rollbackConfiguration; private string _rootId; private string _stackId; private string _stackName; private StackStatus _stackStatus; private string _stackStatusReason; private List<Tag> _tags = new List<Tag>(); private int? _timeoutInMinutes; /// <summary> /// Gets and sets the property Capabilities. /// <para> /// The capabilities allowed in the stack. /// </para> /// </summary> public List<string> Capabilities { get { return this._capabilities; } set { this._capabilities = value; } } // Check to see if Capabilities property is set internal bool IsSetCapabilities() { return this._capabilities != null && this._capabilities.Count > 0; } /// <summary> /// Gets and sets the property ChangeSetId. /// <para> /// The unique ID of the change set. /// </para> /// </summary> [AWSProperty(Min=1)] public string ChangeSetId { get { return this._changeSetId; } set { this._changeSetId = value; } } // Check to see if ChangeSetId property is set internal bool IsSetChangeSetId() { return this._changeSetId != null; } /// <summary> /// Gets and sets the property CreationTime. /// <para> /// The time at which the stack was created. /// </para> /// </summary> [AWSProperty(Required=true)] public DateTime CreationTime { get { return this._creationTime.GetValueOrDefault(); } set { this._creationTime = value; } } // Check to see if CreationTime property is set internal bool IsSetCreationTime() { return this._creationTime.HasValue; } /// <summary> /// Gets and sets the property DeletionTime. /// <para> /// The time the stack was deleted. /// </para> /// </summary> public DateTime DeletionTime { get { return this._deletionTime.GetValueOrDefault(); } set { this._deletionTime = value; } } // Check to see if DeletionTime property is set internal bool IsSetDeletionTime() { return this._deletionTime.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// A user-defined description associated with the stack. /// </para> /// </summary> [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; } /// <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> public bool DisableRollback { get { return this._disableRollback.GetValueOrDefault(); } set { this._disableRollback = value; } } // Check to see if DisableRollback property is set internal bool IsSetDisableRollback() { return this._disableRollback.HasValue; } /// <summary> /// Gets and sets the property DriftInformation. /// <para> /// Information about whether a stack's actual configuration differs, or has <i>drifted</i>, /// from its expected configuration, as defined in the stack template and any values specified /// as template parameters. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting /// Unregulated Configuration Changes to Stacks and Resources</a>. /// </para> /// </summary> public StackDriftInformation DriftInformation { get { return this._driftInformation; } set { this._driftInformation = value; } } // Check to see if DriftInformation property is set internal bool IsSetDriftInformation() { return this._driftInformation != null; } /// <summary> /// Gets and sets the property EnableTerminationProtection. /// <para> /// Whether termination protection is enabled for the stack. /// </para> /// /// <para> /// For <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html">nested /// stacks</a>, termination protection is set on the root stack and can't be changed directly /// on the nested stack. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-protect-stacks.html">Protecting /// a Stack From Being Deleted</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public bool EnableTerminationProtection { get { return this._enableTerminationProtection.GetValueOrDefault(); } set { this._enableTerminationProtection = value; } } // Check to see if EnableTerminationProtection property is set internal bool IsSetEnableTerminationProtection() { return this._enableTerminationProtection.HasValue; } /// <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> public DateTime LastUpdatedTime { get { return this._lastUpdatedTime.GetValueOrDefault(); } set { this._lastUpdatedTime = value; } } // Check to see if LastUpdatedTime property is set internal bool IsSetLastUpdatedTime() { return this._lastUpdatedTime.HasValue; } /// <summary> /// Gets and sets the property NotificationARNs. /// <para> /// Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. /// </para> /// </summary> [AWSProperty(Max=5)] public List<string> NotificationARNs { get { return this._notificationARNs; } set { this._notificationARNs = value; } } // Check to see if NotificationARNs property is set internal bool IsSetNotificationARNs() { return this._notificationARNs != null && this._notificationARNs.Count > 0; } /// <summary> /// Gets and sets the property Outputs. /// <para> /// A list of output structures. /// </para> /// </summary> public List<Output> Outputs { get { return this._outputs; } set { this._outputs = value; } } // Check to see if Outputs property is set internal bool IsSetOutputs() { return this._outputs != null && this._outputs.Count > 0; } /// <summary> /// Gets and sets the property Parameters. /// <para> /// A list of <code>Parameter</code> structures. /// </para> /// </summary> public List<Parameter> Parameters { get { return this._parameters; } set { this._parameters = value; } } // Check to see if Parameters property is set internal bool IsSetParameters() { return this._parameters != null && this._parameters.Count > 0; } /// <summary> /// Gets and sets the property ParentId. /// <para> /// For nested stacks--stacks created as resources for another stack--the stack ID of /// the direct parent of this stack. For the first level of nested stacks, the root stack /// is also the parent stack. /// </para> /// /// <para> /// For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html">Working /// with Nested Stacks</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public string ParentId { get { return this._parentId; } set { this._parentId = value; } } // Check to see if ParentId property is set internal bool IsSetParentId() { return this._parentId != null; } /// <summary> /// Gets and sets the property RoleARN. /// <para> /// The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's /// associated with the stack. During a stack operation, CloudFormation uses this role's /// credentials to make calls on your behalf. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] public string RoleARN { get { return this._roleARN; } set { this._roleARN = value; } } // Check to see if RoleARN property is set internal bool IsSetRoleARN() { return this._roleARN != null; } /// <summary> /// Gets and sets the property RollbackConfiguration. /// <para> /// The rollback triggers for CloudFormation to monitor during stack creation and updating /// operations, and for the specified monitoring period afterwards. /// </para> /// </summary> public RollbackConfiguration RollbackConfiguration { get { return this._rollbackConfiguration; } set { this._rollbackConfiguration = value; } } // Check to see if RollbackConfiguration property is set internal bool IsSetRollbackConfiguration() { return this._rollbackConfiguration != null; } /// <summary> /// Gets and sets the property RootId. /// <para> /// For nested stacks--stacks created as resources for another stack--the stack ID of /// the top-level stack to which the nested stack ultimately belongs. /// </para> /// /// <para> /// For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html">Working /// with Nested Stacks</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public string RootId { get { return this._rootId; } set { this._rootId = value; } } // Check to see if RootId property is set internal bool IsSetRootId() { return this._rootId != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// Unique identifier of the stack. /// </para> /// </summary> public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name associated with the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } /// <summary> /// Gets and sets the property StackStatus. /// <para> /// Current status of the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public StackStatus StackStatus { get { return this._stackStatus; } set { this._stackStatus = value; } } // Check to see if StackStatus property is set internal bool IsSetStackStatus() { return this._stackStatus != null; } /// <summary> /// Gets and sets the property StackStatusReason. /// <para> /// Success/failure message associated with the stack status. /// </para> /// </summary> public string StackStatusReason { get { return this._stackStatusReason; } set { this._stackStatusReason = value; } } // Check to see if StackStatusReason property is set internal bool IsSetStackStatusReason() { return this._stackStatusReason != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// A list of <code>Tag</code>s that specify information about the stack. /// </para> /// </summary> [AWSProperty(Max=50)] public List<Tag> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property TimeoutInMinutes. /// <para> /// The amount of time within which stack creation should complete. /// </para> /// </summary> [AWSProperty(Min=1)] public int TimeoutInMinutes { get { return this._timeoutInMinutes.GetValueOrDefault(); } set { this._timeoutInMinutes = value; } } // Check to see if TimeoutInMinutes property is set internal bool IsSetTimeoutInMinutes() { return this._timeoutInMinutes.HasValue; } } }
501
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains information about whether the stack's actual configuration differs, or has /// <i>drifted</i>, from its expected configuration, as defined in the stack template /// and any values specified as template parameters. A stack is considered to have drifted /// if one or more of its resources have drifted. /// </summary> public partial class StackDriftInformation { private DateTime? _lastCheckTimestamp; private StackDriftStatus _stackDriftStatus; /// <summary> /// Gets and sets the property LastCheckTimestamp. /// <para> /// Most recent time when a drift detection operation was initiated on the stack, or any /// of its individual resources that support drift detection. /// </para> /// </summary> public DateTime LastCheckTimestamp { get { return this._lastCheckTimestamp.GetValueOrDefault(); } set { this._lastCheckTimestamp = value; } } // Check to see if LastCheckTimestamp property is set internal bool IsSetLastCheckTimestamp() { return this._lastCheckTimestamp.HasValue; } /// <summary> /// Gets and sets the property StackDriftStatus. /// <para> /// Status of the stack's actual configuration compared to its expected template configuration. /// </para> /// <ul> <li> /// <para> /// <code>DRIFTED</code>: The stack differs from its expected template configuration. /// A stack is considered to have drifted if one or more of its resources have drifted. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation hasn't checked if the stack differs from /// its expected template configuration. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: The stack's actual configuration matches its expected template /// configuration. /// </para> /// </li> <li> /// <para> /// <code>UNKNOWN</code>: This value is reserved for future use. /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true)] public StackDriftStatus StackDriftStatus { get { return this._stackDriftStatus; } set { this._stackDriftStatus = value; } } // Check to see if StackDriftStatus property is set internal bool IsSetStackDriftStatus() { return this._stackDriftStatus != null; } } }
101
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains information about whether the stack's actual configuration differs, or has /// <i>drifted</i>, from its expected configuration, as defined in the stack template /// and any values specified as template parameters. A stack is considered to have drifted /// if one or more of its resources have drifted. /// </summary> public partial class StackDriftInformationSummary { private DateTime? _lastCheckTimestamp; private StackDriftStatus _stackDriftStatus; /// <summary> /// Gets and sets the property LastCheckTimestamp. /// <para> /// Most recent time when a drift detection operation was initiated on the stack, or any /// of its individual resources that support drift detection. /// </para> /// </summary> public DateTime LastCheckTimestamp { get { return this._lastCheckTimestamp.GetValueOrDefault(); } set { this._lastCheckTimestamp = value; } } // Check to see if LastCheckTimestamp property is set internal bool IsSetLastCheckTimestamp() { return this._lastCheckTimestamp.HasValue; } /// <summary> /// Gets and sets the property StackDriftStatus. /// <para> /// Status of the stack's actual configuration compared to its expected template configuration. /// </para> /// <ul> <li> /// <para> /// <code>DRIFTED</code>: The stack differs from its expected template configuration. /// A stack is considered to have drifted if one or more of its resources have drifted. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation hasn't checked if the stack differs from /// its expected template configuration. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: The stack's actual configuration matches its expected template /// configuration. /// </para> /// </li> <li> /// <para> /// <code>UNKNOWN</code>: This value is reserved for future use. /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true)] public StackDriftStatus StackDriftStatus { get { return this._stackDriftStatus; } set { this._stackDriftStatus = value; } } // Check to see if StackDriftStatus property is set internal bool IsSetStackDriftStatus() { return this._stackDriftStatus != null; } } }
101
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The StackEvent data type. /// </summary> public partial class StackEvent { private string _clientRequestToken; private string _eventId; private HookFailureMode _hookFailureMode; private HookInvocationPoint _hookInvocationPoint; private HookStatus _hookStatus; private string _hookStatusReason; private string _hookType; private string _logicalResourceId; private string _physicalResourceId; private string _resourceProperties; private ResourceStatus _resourceStatus; private string _resourceStatusReason; private string _resourceType; private string _stackId; private string _stackName; private DateTime? _timestamp; /// <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> [AWSProperty(Min=1, Max=128)] public string ClientRequestToken { get { return this._clientRequestToken; } set { this._clientRequestToken = value; } } // Check to see if ClientRequestToken property is set internal bool IsSetClientRequestToken() { return this._clientRequestToken != null; } /// <summary> /// Gets and sets the property EventId. /// <para> /// The unique ID of this event. /// </para> /// </summary> [AWSProperty(Required=true)] public string EventId { get { return this._eventId; } set { this._eventId = value; } } // Check to see if EventId property is set internal bool IsSetEventId() { return this._eventId != null; } /// <summary> /// Gets and sets the property HookFailureMode. /// <para> /// Specify the hook failure mode for non-compliant resources in the followings ways. /// </para> /// <ul> <li> /// <para> /// <code>FAIL</code> Stops provisioning resources. /// </para> /// </li> <li> /// <para> /// <code>WARN</code> Allows provisioning to continue with a warning message. /// </para> /// </li> </ul> /// </summary> public HookFailureMode HookFailureMode { get { return this._hookFailureMode; } set { this._hookFailureMode = value; } } // Check to see if HookFailureMode property is set internal bool IsSetHookFailureMode() { return this._hookFailureMode != null; } /// <summary> /// Gets and sets the property HookInvocationPoint. /// <para> /// Invocation points are points in provisioning logic where hooks are initiated. /// </para> /// </summary> public HookInvocationPoint HookInvocationPoint { get { return this._hookInvocationPoint; } set { this._hookInvocationPoint = value; } } // Check to see if HookInvocationPoint property is set internal bool IsSetHookInvocationPoint() { return this._hookInvocationPoint != null; } /// <summary> /// Gets and sets the property HookStatus. /// <para> /// Provides the status of the change set hook. /// </para> /// </summary> public HookStatus HookStatus { get { return this._hookStatus; } set { this._hookStatus = value; } } // Check to see if HookStatus property is set internal bool IsSetHookStatus() { return this._hookStatus != null; } /// <summary> /// Gets and sets the property HookStatusReason. /// <para> /// Provides the reason for the hook status. /// </para> /// </summary> [AWSProperty(Min=1, Max=1024)] public string HookStatusReason { get { return this._hookStatusReason; } set { this._hookStatusReason = value; } } // Check to see if HookStatusReason property is set internal bool IsSetHookStatusReason() { return this._hookStatusReason != null; } /// <summary> /// Gets and sets the property HookType. /// <para> /// The name of the hook. /// </para> /// </summary> [AWSProperty(Min=1, Max=255)] public string HookType { get { return this._hookType; } set { this._hookType = value; } } // Check to see if HookType property is set internal bool IsSetHookType() { return this._hookType != null; } /// <summary> /// Gets and sets the property LogicalResourceId. /// <para> /// The logical name of the resource specified in the template. /// </para> /// </summary> public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <summary> /// Gets and sets the property PhysicalResourceId. /// <para> /// The name or unique identifier associated with the physical instance of the resource. /// </para> /// </summary> public string PhysicalResourceId { get { return this._physicalResourceId; } set { this._physicalResourceId = value; } } // Check to see if PhysicalResourceId property is set internal bool IsSetPhysicalResourceId() { return this._physicalResourceId != null; } /// <summary> /// Gets and sets the property ResourceProperties. /// <para> /// BLOB of the properties used to create the resource. /// </para> /// </summary> public string ResourceProperties { get { return this._resourceProperties; } set { this._resourceProperties = value; } } // Check to see if ResourceProperties property is set internal bool IsSetResourceProperties() { return this._resourceProperties != null; } /// <summary> /// Gets and sets the property ResourceStatus. /// <para> /// Current status of the resource. /// </para> /// </summary> public ResourceStatus ResourceStatus { get { return this._resourceStatus; } set { this._resourceStatus = value; } } // Check to see if ResourceStatus property is set internal bool IsSetResourceStatus() { return this._resourceStatus != null; } /// <summary> /// Gets and sets the property ResourceStatusReason. /// <para> /// Success/failure message associated with the resource. /// </para> /// </summary> public string ResourceStatusReason { get { return this._resourceStatusReason; } set { this._resourceStatusReason = value; } } // Check to see if ResourceStatusReason property is set internal bool IsSetResourceStatusReason() { return this._resourceStatusReason != null; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// Type of resource. (For more information, go to <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon /// Web Services Resource Types Reference</a> in the CloudFormation User Guide.) /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// The unique ID name of the instance of the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name associated with a stack. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } /// <summary> /// Gets and sets the property Timestamp. /// <para> /// Time the status was updated. /// </para> /// </summary> [AWSProperty(Required=true)] public DateTime Timestamp { get { return this._timestamp.GetValueOrDefault(); } set { this._timestamp = value; } } // Check to see if Timestamp property is set internal bool IsSetTimestamp() { return this._timestamp.HasValue; } } }
375
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// An 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, in addition to the ID of the actual stack and the stack status. /// </summary> public partial class StackInstance { private string _account; private StackDriftStatus _driftStatus; private DateTime? _lastDriftCheckTimestamp; private string _lastOperationId; private string _organizationalUnitId; private List<Parameter> _parameterOverrides = new List<Parameter>(); private string _region; private string _stackId; private StackInstanceComprehensiveStatus _stackInstanceStatus; private string _stackSetId; private StackInstanceStatus _status; private string _statusReason; /// <summary> /// Gets and sets the property Account. /// <para> /// [Self-managed permissions] The name of the Amazon Web Services account that the stack /// instance is associated with. /// </para> /// </summary> public string Account { get { return this._account; } set { this._account = value; } } // Check to see if Account property is set internal bool IsSetAccount() { return this._account != null; } /// <summary> /// Gets and sets the property DriftStatus. /// <para> /// Status of the stack instance's actual configuration compared to the expected template /// and parameter configuration of the stack set to which it belongs. /// </para> /// <ul> <li> /// <para> /// <code>DRIFTED</code>: The stack differs from the expected template and parameter /// configuration of the stack set to which it belongs. A stack instance is considered /// to have drifted if one or more of the resources in the associated stack have drifted. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation hasn't checked if the stack instance differs /// from its expected stack set configuration. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: The stack instance's actual configuration matches its expected /// stack set configuration. /// </para> /// </li> <li> /// <para> /// <code>UNKNOWN</code>: This value is reserved for future use. /// </para> /// </li> </ul> /// </summary> 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; } /// <summary> /// Gets and sets the property LastDriftCheckTimestamp. /// <para> /// Most recent time when CloudFormation performed a drift detection operation on the /// stack instance. This value will be <code>NULL</code> for any stack instance on which /// drift detection hasn't yet been performed. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property LastOperationId. /// <para> /// The last unique ID of a StackSet operation performed on a stack instance. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string LastOperationId { get { return this._lastOperationId; } set { this._lastOperationId = value; } } // Check to see if LastOperationId property is set internal bool IsSetLastOperationId() { return this._lastOperationId != null; } /// <summary> /// Gets and sets the property OrganizationalUnitId. /// <para> /// [Service-managed permissions] The organization root ID or organizational unit (OU) /// IDs that you specified for <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>. /// </para> /// </summary> public string OrganizationalUnitId { get { return this._organizationalUnitId; } set { this._organizationalUnitId = value; } } // Check to see if OrganizationalUnitId property is set internal bool IsSetOrganizationalUnitId() { return this._organizationalUnitId != null; } /// <summary> /// Gets and sets the property ParameterOverrides. /// <para> /// A list of parameters from the stack set template whose values have been overridden /// in this stack instance. /// </para> /// </summary> public List<Parameter> ParameterOverrides { get { return this._parameterOverrides; } set { this._parameterOverrides = value; } } // Check to see if ParameterOverrides property is set internal bool IsSetParameterOverrides() { return this._parameterOverrides != null && this._parameterOverrides.Count > 0; } /// <summary> /// Gets and sets the property Region. /// <para> /// The name of the Amazon Web Services Region that the stack instance is associated with. /// </para> /// </summary> public string Region { get { return this._region; } set { this._region = value; } } // Check to see if Region property is set internal bool IsSetRegion() { return this._region != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// The ID of the stack instance. /// </para> /// </summary> public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackInstanceStatus. /// <para> /// The detailed status of the stack instance. /// </para> /// </summary> public StackInstanceComprehensiveStatus StackInstanceStatus { get { return this._stackInstanceStatus; } set { this._stackInstanceStatus = value; } } // Check to see if StackInstanceStatus property is set internal bool IsSetStackInstanceStatus() { return this._stackInstanceStatus != null; } /// <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> 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; } /// <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> operations. You might need to perform a <code>DeleteStackInstances</code> /// operation, with <code>RetainStacks</code> set to <code>true</code>, to delete the /// stack instance, and then delete 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> public StackInstanceStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } /// <summary> /// Gets and sets the property StatusReason. /// <para> /// The explanation for the specific status code that's assigned to this stack instance. /// </para> /// </summary> public string StatusReason { get { return this._statusReason; } set { this._statusReason = value; } } // Check to see if StatusReason property is set internal bool IsSetStatusReason() { return this._statusReason != null; } } }
327
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The detailed status of the stack instance. /// </summary> public partial class StackInstanceComprehensiveStatus { private StackInstanceDetailedStatus _detailedStatus; /// <summary> /// Gets and sets the property DetailedStatus. <ul> <li> /// <para> /// <code>CANCELLED</code>: The operation in the specified account and Region has been /// canceled. 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. 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>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> operations. You might need to perform a <code>DeleteStackInstances</code> /// operation, with <code>RetainStacks</code> set to <code>true</code>, to delete the /// stack instance, and then delete the stack manually. /// </para> /// </li> <li> /// <para> /// <code>PENDING</code>: The operation in the specified account and Region has yet to /// start. /// </para> /// </li> <li> /// <para> /// <code>RUNNING</code>: The operation in the specified account and Region is currently /// in progress. /// </para> /// </li> <li> /// <para> /// <code>SKIPPED_SUSPENDED_ACCOUNT</code>: The operation in the specified account and /// Region has been skipped because the account was suspended at the time of the operation. /// </para> /// </li> <li> /// <para> /// <code>SUCCEEDED</code>: The operation in the specified account and Region completed /// successfully. /// </para> /// </li> </ul> /// </summary> public StackInstanceDetailedStatus DetailedStatus { get { return this._detailedStatus; } set { this._detailedStatus = value; } } // Check to see if DetailedStatus property is set internal bool IsSetDetailedStatus() { return this._detailedStatus != null; } } }
94
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The filter to apply to stack instances /// </summary> public partial class StackInstanceFilter { private StackInstanceFilterName _name; private string _values; /// <summary> /// Gets and sets the property Name. /// <para> /// The type of filter to apply. /// </para> /// </summary> public StackInstanceFilterName Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Values. /// <para> /// The status to filter by. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string Values { get { return this._values; } set { this._values = value; } } // Check to see if Values property is set internal bool IsSetValues() { return this._values != null; } } }
77
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified stack instance doesn't exist. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class StackInstanceNotFoundException : AmazonCloudFormationException { /// <summary> /// Constructs a new StackInstanceNotFoundException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public StackInstanceNotFoundException(string message) : base(message) {} /// <summary> /// Construct instance of StackInstanceNotFoundException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public StackInstanceNotFoundException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of StackInstanceNotFoundException /// </summary> /// <param name="innerException"></param> public StackInstanceNotFoundException(Exception innerException) : base(innerException) {} /// <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> public StackInstanceNotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public StackInstanceNotFoundException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected StackInstanceNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The structure that contains summary information about a stack instance. /// </summary> public partial class StackInstanceSummary { private string _account; private StackDriftStatus _driftStatus; private DateTime? _lastDriftCheckTimestamp; private string _lastOperationId; private string _organizationalUnitId; private string _region; private string _stackId; private StackInstanceComprehensiveStatus _stackInstanceStatus; private string _stackSetId; private StackInstanceStatus _status; private string _statusReason; /// <summary> /// Gets and sets the property Account. /// <para> /// [Self-managed permissions] The name of the Amazon Web Services account that the stack /// instance is associated with. /// </para> /// </summary> public string Account { get { return this._account; } set { this._account = value; } } // Check to see if Account property is set internal bool IsSetAccount() { return this._account != null; } /// <summary> /// Gets and sets the property DriftStatus. /// <para> /// Status of the stack instance's actual configuration compared to the expected template /// and parameter configuration of the stack set to which it belongs. /// </para> /// <ul> <li> /// <para> /// <code>DRIFTED</code>: The stack differs from the expected template and parameter /// configuration of the stack set to which it belongs. A stack instance is considered /// to have drifted if one or more of the resources in the associated stack have drifted. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation hasn't checked if the stack instance differs /// from its expected stack set configuration. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: The stack instance's actual configuration matches its expected /// stack set configuration. /// </para> /// </li> <li> /// <para> /// <code>UNKNOWN</code>: This value is reserved for future use. /// </para> /// </li> </ul> /// </summary> 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; } /// <summary> /// Gets and sets the property LastDriftCheckTimestamp. /// <para> /// Most recent time when CloudFormation performed a drift detection operation on the /// stack instance. This value will be <code>NULL</code> for any stack instance on which /// drift detection hasn't yet been performed. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property LastOperationId. /// <para> /// The last unique ID of a StackSet operation performed on a stack instance. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string LastOperationId { get { return this._lastOperationId; } set { this._lastOperationId = value; } } // Check to see if LastOperationId property is set internal bool IsSetLastOperationId() { return this._lastOperationId != null; } /// <summary> /// Gets and sets the property OrganizationalUnitId. /// <para> /// [Service-managed permissions] The organization root ID or organizational unit (OU) /// IDs that you specified for <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>. /// </para> /// </summary> public string OrganizationalUnitId { get { return this._organizationalUnitId; } set { this._organizationalUnitId = value; } } // Check to see if OrganizationalUnitId property is set internal bool IsSetOrganizationalUnitId() { return this._organizationalUnitId != null; } /// <summary> /// Gets and sets the property Region. /// <para> /// The name of the Amazon Web Services Region that the stack instance is associated with. /// </para> /// </summary> public string Region { get { return this._region; } set { this._region = value; } } // Check to see if Region property is set internal bool IsSetRegion() { return this._region != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// The ID of the stack instance. /// </para> /// </summary> public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackInstanceStatus. /// <para> /// The detailed status of the stack instance. /// </para> /// </summary> public StackInstanceComprehensiveStatus StackInstanceStatus { get { return this._stackInstanceStatus; } set { this._stackInstanceStatus = value; } } // Check to see if StackInstanceStatus property is set internal bool IsSetStackInstanceStatus() { return this._stackInstanceStatus != null; } /// <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> 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; } /// <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> operations. You might need to perform a <code>DeleteStackInstances</code> /// operation, with <code>RetainStacks</code> set to <code>true</code>, to delete the /// stack instance, and then delete 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> public StackInstanceStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } /// <summary> /// Gets and sets the property StatusReason. /// <para> /// The explanation for the specific status code assigned to this stack instance. /// </para> /// </summary> public string StatusReason { get { return this._statusReason; } set { this._statusReason = value; } } // Check to see if StatusReason property is set internal bool IsSetStatusReason() { return this._statusReason != null; } } }
302
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified stack ARN doesn't exist or stack doesn't exist corresponding to the /// ARN in input. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class StackNotFoundException : AmazonCloudFormationException { /// <summary> /// Constructs a new StackNotFoundException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public StackNotFoundException(string message) : base(message) {} /// <summary> /// Construct instance of StackNotFoundException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public StackNotFoundException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of StackNotFoundException /// </summary> /// <param name="innerException"></param> public StackNotFoundException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of StackNotFoundException /// </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> public StackNotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of StackNotFoundException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public StackNotFoundException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the StackNotFoundException 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> protected StackNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
125
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The StackResource data type. /// </summary> public partial class StackResource { private string _description; private StackResourceDriftInformation _driftInformation; private string _logicalResourceId; private ModuleInfo _moduleInfo; private string _physicalResourceId; private ResourceStatus _resourceStatus; private string _resourceStatusReason; private string _resourceType; private string _stackId; private string _stackName; private DateTime? _timestamp; /// <summary> /// Gets and sets the property Description. /// <para> /// User defined description associated with the resource. /// </para> /// </summary> [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; } /// <summary> /// Gets and sets the property DriftInformation. /// <para> /// Information about whether the resource's actual configuration differs, or has <i>drifted</i>, /// from its expected configuration, as defined in the stack template and any values specified /// as template parameters. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting /// Unregulated Configuration Changes to Stacks and Resources</a>. /// </para> /// </summary> public StackResourceDriftInformation DriftInformation { get { return this._driftInformation; } set { this._driftInformation = value; } } // Check to see if DriftInformation property is set internal bool IsSetDriftInformation() { return this._driftInformation != null; } /// <summary> /// Gets and sets the property LogicalResourceId. /// <para> /// The logical name of the resource specified in the template. /// </para> /// </summary> [AWSProperty(Required=true)] public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <summary> /// Gets and sets the property ModuleInfo. /// <para> /// Contains information about the module from which the resource was created, if the /// resource was created from a module included in the stack template. /// </para> /// </summary> public ModuleInfo ModuleInfo { get { return this._moduleInfo; } set { this._moduleInfo = value; } } // Check to see if ModuleInfo property is set internal bool IsSetModuleInfo() { return this._moduleInfo != null; } /// <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 CloudFormation. /// </para> /// </summary> public string PhysicalResourceId { get { return this._physicalResourceId; } set { this._physicalResourceId = value; } } // Check to see if PhysicalResourceId property is set internal bool IsSetPhysicalResourceId() { return this._physicalResourceId != null; } /// <summary> /// Gets and sets the property ResourceStatus. /// <para> /// Current status of the resource. /// </para> /// </summary> [AWSProperty(Required=true)] public ResourceStatus ResourceStatus { get { return this._resourceStatus; } set { this._resourceStatus = value; } } // Check to see if ResourceStatus property is set internal bool IsSetResourceStatus() { return this._resourceStatus != null; } /// <summary> /// Gets and sets the property ResourceStatusReason. /// <para> /// Success/failure message associated with the resource. /// </para> /// </summary> public string ResourceStatusReason { get { return this._resourceStatusReason; } set { this._resourceStatusReason = value; } } // Check to see if ResourceStatusReason property is set internal bool IsSetResourceStatusReason() { return this._resourceStatusReason != null; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// Type of resource. For more information, go to <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon /// Web Services Resource Types Reference</a> in the CloudFormation User Guide. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// Unique identifier of the stack. /// </para> /// </summary> public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name associated with the stack. /// </para> /// </summary> public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } /// <summary> /// Gets and sets the property Timestamp. /// <para> /// Time the status was updated. /// </para> /// </summary> [AWSProperty(Required=true)] public DateTime Timestamp { get { return this._timestamp.GetValueOrDefault(); } set { this._timestamp = value; } } // Check to see if Timestamp property is set internal bool IsSetTimestamp() { return this._timestamp.HasValue; } } }
258
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains detailed information about the specified stack resource. /// </summary> public partial class StackResourceDetail { private string _description; private StackResourceDriftInformation _driftInformation; private DateTime? _lastUpdatedTimestamp; private string _logicalResourceId; private string _metadata; private ModuleInfo _moduleInfo; private string _physicalResourceId; private ResourceStatus _resourceStatus; private string _resourceStatusReason; private string _resourceType; private string _stackId; private string _stackName; /// <summary> /// Gets and sets the property Description. /// <para> /// User defined description associated with the resource. /// </para> /// </summary> [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; } /// <summary> /// Gets and sets the property DriftInformation. /// <para> /// Information about whether the resource's actual configuration differs, or has <i>drifted</i>, /// from its expected configuration, as defined in the stack template and any values specified /// as template parameters. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting /// Unregulated Configuration Changes to Stacks and Resources</a>. /// </para> /// </summary> public StackResourceDriftInformation DriftInformation { get { return this._driftInformation; } set { this._driftInformation = value; } } // Check to see if DriftInformation property is set internal bool IsSetDriftInformation() { return this._driftInformation != null; } /// <summary> /// Gets and sets the property LastUpdatedTimestamp. /// <para> /// Time the status was updated. /// </para> /// </summary> [AWSProperty(Required=true)] public DateTime LastUpdatedTimestamp { get { return this._lastUpdatedTimestamp.GetValueOrDefault(); } set { this._lastUpdatedTimestamp = value; } } // Check to see if LastUpdatedTimestamp property is set internal bool IsSetLastUpdatedTimestamp() { return this._lastUpdatedTimestamp.HasValue; } /// <summary> /// Gets and sets the property LogicalResourceId. /// <para> /// The logical name of the resource specified in the template. /// </para> /// </summary> [AWSProperty(Required=true)] public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <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="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html">Metadata /// Attribute</a> in the CloudFormation User Guide. /// </para> /// </summary> public string Metadata { get { return this._metadata; } set { this._metadata = value; } } // Check to see if Metadata property is set internal bool IsSetMetadata() { return this._metadata != null; } /// <summary> /// Gets and sets the property ModuleInfo. /// <para> /// Contains information about the module from which the resource was created, if the /// resource was created from a module included in the stack template. /// </para> /// </summary> public ModuleInfo ModuleInfo { get { return this._moduleInfo; } set { this._moduleInfo = value; } } // Check to see if ModuleInfo property is set internal bool IsSetModuleInfo() { return this._moduleInfo != null; } /// <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 CloudFormation. /// </para> /// </summary> public string PhysicalResourceId { get { return this._physicalResourceId; } set { this._physicalResourceId = value; } } // Check to see if PhysicalResourceId property is set internal bool IsSetPhysicalResourceId() { return this._physicalResourceId != null; } /// <summary> /// Gets and sets the property ResourceStatus. /// <para> /// Current status of the resource. /// </para> /// </summary> [AWSProperty(Required=true)] public ResourceStatus ResourceStatus { get { return this._resourceStatus; } set { this._resourceStatus = value; } } // Check to see if ResourceStatus property is set internal bool IsSetResourceStatus() { return this._resourceStatus != null; } /// <summary> /// Gets and sets the property ResourceStatusReason. /// <para> /// Success/failure message associated with the resource. /// </para> /// </summary> public string ResourceStatusReason { get { return this._resourceStatusReason; } set { this._resourceStatusReason = value; } } // Check to see if ResourceStatusReason property is set internal bool IsSetResourceStatusReason() { return this._resourceStatusReason != null; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// Type of resource. For more information, go to <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon /// Web Services Resource Types Reference</a> in the CloudFormation User Guide. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// Unique identifier of the stack. /// </para> /// </summary> public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name associated with the stack. /// </para> /// </summary> public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } } }
279
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains the drift information for a resource that has been checked for drift. This /// includes actual and expected property values for resources in which CloudFormation /// has detected drift. Only resource properties explicitly defined in the stack template /// are checked for drift. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting /// Unregulated Configuration Changes to Stacks and Resources</a>. /// /// /// <para> /// Resources that don't currently support drift detection can't be checked. For a list /// of resources that support drift detection, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html">Resources /// that Support Drift Detection</a>. /// </para> /// /// <para> /// Use <a>DetectStackResourceDrift</a> to detect drift on individual resources, or <a>DetectStackDrift</a> /// to detect drift on all resources in a given stack that support drift detection. /// </para> /// </summary> public partial class StackResourceDrift { private string _actualProperties; private string _expectedProperties; private string _logicalResourceId; private ModuleInfo _moduleInfo; private string _physicalResourceId; private List<PhysicalResourceIdContextKeyValuePair> _physicalResourceIdContext = new List<PhysicalResourceIdContextKeyValuePair>(); private List<PropertyDifference> _propertyDifferences = new List<PropertyDifference>(); private string _resourceType; private string _stackId; private StackResourceDriftStatus _stackResourceDriftStatus; private DateTime? _timestamp; /// <summary> /// Gets and sets the property ActualProperties. /// <para> /// A JSON structure containing the actual property values of the stack resource. /// </para> /// /// <para> /// For resources whose <code>StackResourceDriftStatus</code> is <code>DELETED</code>, /// this structure will not be present. /// </para> /// </summary> public string ActualProperties { get { return this._actualProperties; } set { this._actualProperties = value; } } // Check to see if ActualProperties property is set internal bool IsSetActualProperties() { return this._actualProperties != null; } /// <summary> /// Gets and sets the property ExpectedProperties. /// <para> /// A JSON structure containing the expected property values of the stack resource, as /// defined in the stack template and any values specified as template parameters. /// </para> /// /// <para> /// For resources whose <code>StackResourceDriftStatus</code> is <code>DELETED</code>, /// this structure will not be present. /// </para> /// </summary> public string ExpectedProperties { get { return this._expectedProperties; } set { this._expectedProperties = value; } } // Check to see if ExpectedProperties property is set internal bool IsSetExpectedProperties() { return this._expectedProperties != null; } /// <summary> /// Gets and sets the property LogicalResourceId. /// <para> /// The logical name of the resource specified in the template. /// </para> /// </summary> [AWSProperty(Required=true)] public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <summary> /// Gets and sets the property ModuleInfo. /// <para> /// Contains information about the module from which the resource was created, if the /// resource was created from a module included in the stack template. /// </para> /// </summary> public ModuleInfo ModuleInfo { get { return this._moduleInfo; } set { this._moduleInfo = value; } } // Check to see if ModuleInfo property is set internal bool IsSetModuleInfo() { return this._moduleInfo != null; } /// <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 CloudFormation. /// </para> /// </summary> public string PhysicalResourceId { get { return this._physicalResourceId; } set { this._physicalResourceId = value; } } // Check to see if PhysicalResourceId property is set internal bool IsSetPhysicalResourceId() { return this._physicalResourceId != null; } /// <summary> /// Gets and sets the property PhysicalResourceIdContext. /// <para> /// Context information that enables CloudFormation to uniquely identify a resource. CloudFormation /// uses context key-value pairs in cases where a resource's logical and physical IDs /// aren't enough to uniquely identify that resource. Each context key-value pair specifies /// a unique resource that contains the targeted resource. /// </para> /// </summary> [AWSProperty(Max=5)] public List<PhysicalResourceIdContextKeyValuePair> PhysicalResourceIdContext { get { return this._physicalResourceIdContext; } set { this._physicalResourceIdContext = value; } } // Check to see if PhysicalResourceIdContext property is set internal bool IsSetPhysicalResourceIdContext() { return this._physicalResourceIdContext != null && this._physicalResourceIdContext.Count > 0; } /// <summary> /// Gets and sets the property PropertyDifferences. /// <para> /// A collection of the resource properties whose actual values differ from their expected /// values. These will be present only for resources whose <code>StackResourceDriftStatus</code> /// is <code>MODIFIED</code>. /// </para> /// </summary> public List<PropertyDifference> PropertyDifferences { get { return this._propertyDifferences; } set { this._propertyDifferences = value; } } // Check to see if PropertyDifferences property is set internal bool IsSetPropertyDifferences() { return this._propertyDifferences != null && this._propertyDifferences.Count > 0; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// The type of the resource. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// The ID of the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackResourceDriftStatus. /// <para> /// Status of the resource's actual configuration compared to its expected configuration. /// </para> /// <ul> <li> /// <para> /// <code>DELETED</code>: The resource differs from its expected template configuration /// because the resource has been deleted. /// </para> /// </li> <li> /// <para> /// <code>MODIFIED</code>: One or more resource properties differ from their expected /// values (as defined in the stack template and any values specified as template parameters). /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: The resource's actual configuration matches its expected template /// configuration. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation does not currently return this value. /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true)] public StackResourceDriftStatus StackResourceDriftStatus { get { return this._stackResourceDriftStatus; } set { this._stackResourceDriftStatus = value; } } // Check to see if StackResourceDriftStatus property is set internal bool IsSetStackResourceDriftStatus() { return this._stackResourceDriftStatus != null; } /// <summary> /// Gets and sets the property Timestamp. /// <para> /// Time at which CloudFormation performed drift detection on the stack resource. /// </para> /// </summary> [AWSProperty(Required=true)] public DateTime Timestamp { get { return this._timestamp.GetValueOrDefault(); } set { this._timestamp = value; } } // Check to see if Timestamp property is set internal bool IsSetTimestamp() { return this._timestamp.HasValue; } } }
307
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains information about whether the resource's actual configuration differs, or /// has <i>drifted</i>, from its expected configuration. /// </summary> public partial class StackResourceDriftInformation { private DateTime? _lastCheckTimestamp; private StackResourceDriftStatus _stackResourceDriftStatus; /// <summary> /// Gets and sets the property LastCheckTimestamp. /// <para> /// When CloudFormation last checked if the resource had drifted from its expected configuration. /// </para> /// </summary> public DateTime LastCheckTimestamp { get { return this._lastCheckTimestamp.GetValueOrDefault(); } set { this._lastCheckTimestamp = value; } } // Check to see if LastCheckTimestamp property is set internal bool IsSetLastCheckTimestamp() { return this._lastCheckTimestamp.HasValue; } /// <summary> /// Gets and sets the property StackResourceDriftStatus. /// <para> /// Status of the resource's actual configuration compared to its expected configuration /// </para> /// <ul> <li> /// <para> /// <code>DELETED</code>: The resource differs from its expected configuration in that /// it has been deleted. /// </para> /// </li> <li> /// <para> /// <code>MODIFIED</code>: The resource differs from its expected configuration. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation has not checked if the resource differs /// from its expected configuration. /// </para> /// /// <para> /// Any resources that do not currently support drift detection have a status of <code>NOT_CHECKED</code>. /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html">Resources /// that Support Drift Detection</a>. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: The resource's actual configuration matches its expected configuration. /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true)] public StackResourceDriftStatus StackResourceDriftStatus { get { return this._stackResourceDriftStatus; } set { this._stackResourceDriftStatus = value; } } // Check to see if StackResourceDriftStatus property is set internal bool IsSetStackResourceDriftStatus() { return this._stackResourceDriftStatus != null; } } }
103
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Summarizes information about whether the resource's actual configuration differs, /// or has <i>drifted</i>, from its expected configuration. /// </summary> public partial class StackResourceDriftInformationSummary { private DateTime? _lastCheckTimestamp; private StackResourceDriftStatus _stackResourceDriftStatus; /// <summary> /// Gets and sets the property LastCheckTimestamp. /// <para> /// When CloudFormation last checked if the resource had drifted from its expected configuration. /// </para> /// </summary> public DateTime LastCheckTimestamp { get { return this._lastCheckTimestamp.GetValueOrDefault(); } set { this._lastCheckTimestamp = value; } } // Check to see if LastCheckTimestamp property is set internal bool IsSetLastCheckTimestamp() { return this._lastCheckTimestamp.HasValue; } /// <summary> /// Gets and sets the property StackResourceDriftStatus. /// <para> /// Status of the resource's actual configuration compared to its expected configuration. /// </para> /// <ul> <li> /// <para> /// <code>DELETED</code>: The resource differs from its expected configuration in that /// it has been deleted. /// </para> /// </li> <li> /// <para> /// <code>MODIFIED</code>: The resource differs from its expected configuration. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation hasn't checked if the resource differs from /// its expected configuration. /// </para> /// /// <para> /// Any resources that don't currently support drift detection have a status of <code>NOT_CHECKED</code>. /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift-resource-list.html">Resources /// that Support Drift Detection</a>. If you performed an <a>ContinueUpdateRollback</a> /// operation on a stack, any resources included in <code>ResourcesToSkip</code> will /// also have a status of <code>NOT_CHECKED</code>. For more information about skipping /// resources during rollback operations, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-continueupdaterollback.html">Continue /// Rolling Back an Update</a> in the CloudFormation User Guide. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: The resource's actual configuration matches its expected configuration. /// </para> /// </li> </ul> /// </summary> [AWSProperty(Required=true)] public StackResourceDriftStatus StackResourceDriftStatus { get { return this._stackResourceDriftStatus; } set { this._stackResourceDriftStatus = value; } } // Check to see if StackResourceDriftStatus property is set internal bool IsSetStackResourceDriftStatus() { return this._stackResourceDriftStatus != null; } } }
107
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains high-level information about the specified stack resource. /// </summary> public partial class StackResourceSummary { private StackResourceDriftInformationSummary _driftInformation; private DateTime? _lastUpdatedTimestamp; private string _logicalResourceId; private ModuleInfo _moduleInfo; private string _physicalResourceId; private ResourceStatus _resourceStatus; private string _resourceStatusReason; private string _resourceType; /// <summary> /// Gets and sets the property DriftInformation. /// <para> /// Information about whether the resource's actual configuration differs, or has <i>drifted</i>, /// from its expected configuration, as defined in the stack template and any values specified /// as template parameters. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting /// Unregulated Configuration Changes to Stacks and Resources</a>. /// </para> /// </summary> public StackResourceDriftInformationSummary DriftInformation { get { return this._driftInformation; } set { this._driftInformation = value; } } // Check to see if DriftInformation property is set internal bool IsSetDriftInformation() { return this._driftInformation != null; } /// <summary> /// Gets and sets the property LastUpdatedTimestamp. /// <para> /// Time the status was updated. /// </para> /// </summary> [AWSProperty(Required=true)] public DateTime LastUpdatedTimestamp { get { return this._lastUpdatedTimestamp.GetValueOrDefault(); } set { this._lastUpdatedTimestamp = value; } } // Check to see if LastUpdatedTimestamp property is set internal bool IsSetLastUpdatedTimestamp() { return this._lastUpdatedTimestamp.HasValue; } /// <summary> /// Gets and sets the property LogicalResourceId. /// <para> /// The logical name of the resource specified in the template. /// </para> /// </summary> [AWSProperty(Required=true)] public string LogicalResourceId { get { return this._logicalResourceId; } set { this._logicalResourceId = value; } } // Check to see if LogicalResourceId property is set internal bool IsSetLogicalResourceId() { return this._logicalResourceId != null; } /// <summary> /// Gets and sets the property ModuleInfo. /// <para> /// Contains information about the module from which the resource was created, if the /// resource was created from a module included in the stack template. /// </para> /// </summary> public ModuleInfo ModuleInfo { get { return this._moduleInfo; } set { this._moduleInfo = value; } } // Check to see if ModuleInfo property is set internal bool IsSetModuleInfo() { return this._moduleInfo != null; } /// <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> public string PhysicalResourceId { get { return this._physicalResourceId; } set { this._physicalResourceId = value; } } // Check to see if PhysicalResourceId property is set internal bool IsSetPhysicalResourceId() { return this._physicalResourceId != null; } /// <summary> /// Gets and sets the property ResourceStatus. /// <para> /// Current status of the resource. /// </para> /// </summary> [AWSProperty(Required=true)] public ResourceStatus ResourceStatus { get { return this._resourceStatus; } set { this._resourceStatus = value; } } // Check to see if ResourceStatus property is set internal bool IsSetResourceStatus() { return this._resourceStatus != null; } /// <summary> /// Gets and sets the property ResourceStatusReason. /// <para> /// Success/failure message associated with the resource. /// </para> /// </summary> public string ResourceStatusReason { get { return this._resourceStatusReason; } set { this._resourceStatusReason = value; } } // Check to see if ResourceStatusReason property is set internal bool IsSetResourceStatusReason() { return this._resourceStatusReason != null; } /// <summary> /// Gets and sets the property ResourceType. /// <para> /// Type of resource. (For more information, go to <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Amazon /// Web Services Resource Types Reference</a> in the CloudFormation User Guide.) /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=256)] public string ResourceType { get { return this._resourceType; } set { this._resourceType = value; } } // Check to see if ResourceType property is set internal bool IsSetResourceType() { return this._resourceType != null; } } }
199
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// A structure that contains information about a stack set. A stack set enables you to /// provision stacks into Amazon Web Services accounts and across Regions by using a single /// CloudFormation template. In the stack set, you specify the template to use, in addition /// to any parameters and capabilities that the template requires. /// </summary> public partial class StackSet { private string _administrationRoleARN; private AutoDeployment _autoDeployment; private List<string> _capabilities = new List<string>(); private string _description; private string _executionRoleName; private ManagedExecution _managedExecution; private List<string> _organizationalUnitIds = new List<string>(); private List<Parameter> _parameters = new List<Parameter>(); private PermissionModels _permissionModel; private List<string> _regions = new List<string>(); private string _stackSetARN; private StackSetDriftDetectionDetails _stackSetDriftDetectionDetails; private string _stackSetId; private string _stackSetName; private StackSetStatus _status; private List<Tag> _tags = new List<Tag>(); private string _templateBody; /// <summary> /// Gets and sets the property AdministrationRoleARN. /// <para> /// The Amazon Resource Name (ARN) of the IAM role used to create or update the stack /// set. /// </para> /// /// <para> /// Use customized administrator roles to control which users or groups can manage specific /// stack sets within the same administrator account. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Prerequisites: /// Granting Permissions for Stack Set Operations</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] public string AdministrationRoleARN { get { return this._administrationRoleARN; } set { this._administrationRoleARN = value; } } // Check to see if AdministrationRoleARN property is set internal bool IsSetAdministrationRoleARN() { return this._administrationRoleARN != null; } /// <summary> /// Gets and sets the property AutoDeployment. /// <para> /// [Service-managed permissions] Describes whether StackSets automatically deploys to /// Organizations accounts that are added to a target organization or organizational unit /// (OU). /// </para> /// </summary> 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; } /// <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 Amazon Web Services account—for /// example, by creating new Identity and Access Management (IAM) users. For more information, /// see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging /// IAM Resources in CloudFormation Templates.</a> /// </para> /// </summary> public List<string> Capabilities { get { return this._capabilities; } set { this._capabilities = value; } } // Check to see if Capabilities property is set internal bool IsSetCapabilities() { return this._capabilities != null && this._capabilities.Count > 0; } /// <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> [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; } /// <summary> /// Gets and sets the property ExecutionRoleName. /// <para> /// The name of the IAM execution role used to create or update the stack set. /// </para> /// /// <para> /// Use customized execution roles to control which stack resources users and groups can /// include in their stack sets. /// </para> /// </summary> [AWSProperty(Min=1, Max=64)] public string ExecutionRoleName { get { return this._executionRoleName; } set { this._executionRoleName = value; } } // Check to see if ExecutionRoleName property is set internal bool IsSetExecutionRoleName() { return this._executionRoleName != null; } /// <summary> /// Gets and sets the property ManagedExecution. /// <para> /// Describes whether StackSets performs non-conflicting operations concurrently and queues /// conflicting operations. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property OrganizationalUnitIds. /// <para> /// [Service-managed permissions] The organization root ID or organizational unit (OU) /// IDs that you specified for <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>. /// </para> /// </summary> public List<string> OrganizationalUnitIds { get { return this._organizationalUnitIds; } set { this._organizationalUnitIds = value; } } // Check to see if OrganizationalUnitIds property is set internal bool IsSetOrganizationalUnitIds() { return this._organizationalUnitIds != null && this._organizationalUnitIds.Count > 0; } /// <summary> /// Gets and sets the property Parameters. /// <para> /// A list of input parameters for a stack set. /// </para> /// </summary> public List<Parameter> Parameters { get { return this._parameters; } set { this._parameters = value; } } // Check to see if Parameters property is set internal bool IsSetParameters() { return this._parameters != null && this._parameters.Count > 0; } /// <summary> /// Gets and sets the property PermissionModel. /// <para> /// Describes how the IAM roles required for stack set operations are created. /// </para> /// <ul> <li> /// <para> /// With <code>self-managed</code> permissions, you must create the administrator and /// execution roles required to deploy to target accounts. For more information, see <a /// href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html">Grant /// Self-Managed Stack Set Permissions</a>. /// </para> /// </li> <li> /// <para> /// With <code>service-managed</code> permissions, StackSets automatically creates the /// IAM roles required to deploy to accounts managed by Organizations. For more information, /// see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html">Grant /// Service-Managed Stack Set Permissions</a>. /// </para> /// </li> </ul> /// </summary> 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; } /// <summary> /// Gets and sets the property Regions. /// <para> /// Returns a list of all Amazon Web Services Regions the given StackSet has stack instances /// deployed in. The Amazon Web Services Regions list output is in no particular order. /// </para> /// </summary> public List<string> Regions { get { return this._regions; } set { this._regions = value; } } // Check to see if Regions property is set internal bool IsSetRegions() { return this._regions != null && this._regions.Count > 0; } /// <summary> /// Gets and sets the property StackSetARN. /// <para> /// The Amazon Resource Name (ARN) of the stack set. /// </para> /// </summary> public string StackSetARN { get { return this._stackSetARN; } set { this._stackSetARN = value; } } // Check to see if StackSetARN property is set internal bool IsSetStackSetARN() { return this._stackSetARN != null; } /// <summary> /// Gets and sets the property StackSetDriftDetectionDetails. /// <para> /// Detailed information about the drift status of the stack set. /// </para> /// /// <para> /// For stack sets, contains information about the last <i>completed</i> drift operation /// performed on the stack set. Information about drift operations currently in progress /// isn't included. /// </para> /// </summary> public StackSetDriftDetectionDetails StackSetDriftDetectionDetails { get { return this._stackSetDriftDetectionDetails; } set { this._stackSetDriftDetectionDetails = value; } } // Check to see if StackSetDriftDetectionDetails property is set internal bool IsSetStackSetDriftDetectionDetails() { return this._stackSetDriftDetectionDetails != null; } /// <summary> /// Gets and sets the property StackSetId. /// <para> /// The ID of the stack set. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property StackSetName. /// <para> /// The name that's associated with the stack set. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the stack set. /// </para> /// </summary> 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; } /// <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> [AWSProperty(Max=50)] public List<Tag> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <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> [AWSProperty(Min=1)] public string TemplateBody { get { return this._templateBody; } set { this._templateBody = value; } } // Check to see if TemplateBody property is set internal bool IsSetTemplateBody() { return this._templateBody != null; } } }
413
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Detailed information about the drift status of the stack set. /// /// /// <para> /// For stack sets, contains information about the last <i>completed</i> drift operation /// performed on the stack set. Information about drift operations in-progress isn't included. /// </para> /// /// <para> /// For stack set operations, includes information about drift operations currently being /// performed on the stack set. /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html">Detecting /// unmanaged changes in stack sets</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public partial class StackSetDriftDetectionDetails { private StackSetDriftDetectionStatus _driftDetectionStatus; private int? _driftedStackInstancesCount; private StackSetDriftStatus _driftStatus; private int? _failedStackInstancesCount; private int? _inProgressStackInstancesCount; private int? _inSyncStackInstancesCount; private DateTime? _lastDriftCheckTimestamp; private int? _totalStackInstancesCount; /// <summary> /// Gets and sets the property DriftDetectionStatus. /// <para> /// The status of the stack set drift detection operation. /// </para> /// <ul> <li> /// <para> /// <code>COMPLETED</code>: The drift detection operation completed without failing on /// any stack instances. /// </para> /// </li> <li> /// <para> /// <code>FAILED</code>: The drift detection operation exceeded the specified failure /// tolerance. /// </para> /// </li> <li> /// <para> /// <code>PARTIAL_SUCCESS</code>: The drift detection operation completed without exceeding /// the failure tolerance for the operation. /// </para> /// </li> <li> /// <para> /// <code>IN_PROGRESS</code>: The drift detection operation is currently being performed. /// </para> /// </li> <li> /// <para> /// <code>STOPPED</code>: The user has canceled the drift detection operation. /// </para> /// </li> </ul> /// </summary> public StackSetDriftDetectionStatus DriftDetectionStatus { get { return this._driftDetectionStatus; } set { this._driftDetectionStatus = value; } } // Check to see if DriftDetectionStatus property is set internal bool IsSetDriftDetectionStatus() { return this._driftDetectionStatus != null; } /// <summary> /// Gets and sets the property DriftedStackInstancesCount. /// <para> /// The number of stack instances that have drifted from the expected template and parameter /// configuration of the stack set. A stack instance is considered to have drifted if /// one or more of the resources in the associated stack don't match their expected configuration. /// </para> /// </summary> [AWSProperty(Min=0)] public int DriftedStackInstancesCount { get { return this._driftedStackInstancesCount.GetValueOrDefault(); } set { this._driftedStackInstancesCount = value; } } // Check to see if DriftedStackInstancesCount property is set internal bool IsSetDriftedStackInstancesCount() { return this._driftedStackInstancesCount.HasValue; } /// <summary> /// Gets and sets the property DriftStatus. /// <para> /// 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. /// </para> /// <ul> <li> /// <para> /// <code>DRIFTED</code>: One or more of the stack instances belonging to the stack set /// stack differs from the expected template and parameter configuration. A stack instance /// is considered to have drifted if one or more of the resources in the associated stack /// have drifted. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation hasn't checked the stack set for drift. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: All of the stack instances belonging to the stack set stack /// match from the expected template and parameter configuration. /// </para> /// </li> </ul> /// </summary> public StackSetDriftStatus DriftStatus { get { return this._driftStatus; } set { this._driftStatus = value; } } // Check to see if DriftStatus property is set internal bool IsSetDriftStatus() { return this._driftStatus != null; } /// <summary> /// Gets and sets the property FailedStackInstancesCount. /// <para> /// The number of stack instances for which the drift detection operation failed. /// </para> /// </summary> [AWSProperty(Min=0)] public int FailedStackInstancesCount { get { return this._failedStackInstancesCount.GetValueOrDefault(); } set { this._failedStackInstancesCount = value; } } // Check to see if FailedStackInstancesCount property is set internal bool IsSetFailedStackInstancesCount() { return this._failedStackInstancesCount.HasValue; } /// <summary> /// Gets and sets the property InProgressStackInstancesCount. /// <para> /// The number of stack instances that are currently being checked for drift. /// </para> /// </summary> [AWSProperty(Min=0)] public int InProgressStackInstancesCount { get { return this._inProgressStackInstancesCount.GetValueOrDefault(); } set { this._inProgressStackInstancesCount = value; } } // Check to see if InProgressStackInstancesCount property is set internal bool IsSetInProgressStackInstancesCount() { return this._inProgressStackInstancesCount.HasValue; } /// <summary> /// Gets and sets the property InSyncStackInstancesCount. /// <para> /// The number of stack instances which match the expected template and parameter configuration /// of the stack set. /// </para> /// </summary> [AWSProperty(Min=0)] public int InSyncStackInstancesCount { get { return this._inSyncStackInstancesCount.GetValueOrDefault(); } set { this._inSyncStackInstancesCount = value; } } // Check to see if InSyncStackInstancesCount property is set internal bool IsSetInSyncStackInstancesCount() { return this._inSyncStackInstancesCount.HasValue; } /// <summary> /// Gets and sets the property LastDriftCheckTimestamp. /// <para> /// Most recent time when CloudFormation performed a drift detection operation on the /// stack set. This value will be <code>NULL</code> for any stack set on which drift detection /// hasn't yet been performed. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property TotalStackInstancesCount. /// <para> /// The total number of stack instances belonging to this stack set. /// </para> /// /// <para> /// The total number of stack instances is equal to the total of: /// </para> /// <ul> <li> /// <para> /// Stack instances that match the stack set configuration. /// </para> /// </li> <li> /// <para> /// Stack instances that have drifted from the stack set configuration. /// </para> /// </li> <li> /// <para> /// Stack instances where the drift detection operation has failed. /// </para> /// </li> <li> /// <para> /// Stack instances currently being checked for drift. /// </para> /// </li> </ul> /// </summary> [AWSProperty(Min=0)] public int TotalStackInstancesCount { get { return this._totalStackInstancesCount.GetValueOrDefault(); } set { this._totalStackInstancesCount = value; } } // Check to see if TotalStackInstancesCount property is set internal bool IsSetTotalStackInstancesCount() { return this._totalStackInstancesCount.HasValue; } } }
280
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// 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. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class StackSetNotEmptyException : AmazonCloudFormationException { /// <summary> /// Constructs a new StackSetNotEmptyException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public StackSetNotEmptyException(string message) : base(message) {} /// <summary> /// Construct instance of StackSetNotEmptyException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public StackSetNotEmptyException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of StackSetNotEmptyException /// </summary> /// <param name="innerException"></param> public StackSetNotEmptyException(Exception innerException) : base(innerException) {} /// <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> public StackSetNotEmptyException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public StackSetNotEmptyException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected StackSetNotEmptyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
125
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified stack set doesn't exist. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class StackSetNotFoundException : AmazonCloudFormationException { /// <summary> /// Constructs a new StackSetNotFoundException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public StackSetNotFoundException(string message) : base(message) {} /// <summary> /// Construct instance of StackSetNotFoundException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public StackSetNotFoundException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of StackSetNotFoundException /// </summary> /// <param name="innerException"></param> public StackSetNotFoundException(Exception innerException) : base(innerException) {} /// <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> public StackSetNotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public StackSetNotFoundException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected StackSetNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The structure that contains information about a stack set operation. /// </summary> public partial class StackSetOperation { private StackSetOperationAction _action; private string _administrationRoleARN; private DateTime? _creationTimestamp; private DeploymentTargets _deploymentTargets; private DateTime? _endTimestamp; private string _executionRoleName; private string _operationId; private StackSetOperationPreferences _operationPreferences; private bool? _retainStacks; private StackSetDriftDetectionDetails _stackSetDriftDetectionDetails; private string _stackSetId; private StackSetOperationStatus _status; private StackSetOperationStatusDetails _statusDetails; private string _statusReason; /// <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, in addition to <i>all</i> associated stack set instances. /// </para> /// </summary> public StackSetOperationAction Action { get { return this._action; } set { this._action = value; } } // Check to see if Action property is set internal bool IsSetAction() { return this._action != null; } /// <summary> /// Gets and sets the property AdministrationRoleARN. /// <para> /// The Amazon Resource Name (ARN) of the IAM role used to perform this stack set operation. /// </para> /// /// <para> /// Use customized administrator roles to control which users or groups can manage specific /// stack sets within the same administrator account. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Define /// Permissions for Multiple Administrators</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=20, Max=2048)] public string AdministrationRoleARN { get { return this._administrationRoleARN; } set { this._administrationRoleARN = value; } } // Check to see if AdministrationRoleARN property is set internal bool IsSetAdministrationRoleARN() { return this._administrationRoleARN != null; } /// <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 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> public DateTime CreationTimestamp { get { return this._creationTimestamp.GetValueOrDefault(); } set { this._creationTimestamp = value; } } // Check to see if CreationTimestamp property is set internal bool IsSetCreationTimestamp() { return this._creationTimestamp.HasValue; } /// <summary> /// Gets and sets the property DeploymentTargets. /// <para> /// [Service-managed permissions] The Organizations accounts affected by the stack operation. /// </para> /// </summary> public DeploymentTargets DeploymentTargets { get { return this._deploymentTargets; } set { this._deploymentTargets = value; } } // Check to see if DeploymentTargets property is set internal bool IsSetDeploymentTargets() { return this._deploymentTargets != null; } /// <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> public DateTime EndTimestamp { get { return this._endTimestamp.GetValueOrDefault(); } set { this._endTimestamp = value; } } // Check to see if EndTimestamp property is set internal bool IsSetEndTimestamp() { return this._endTimestamp.HasValue; } /// <summary> /// Gets and sets the property ExecutionRoleName. /// <para> /// The name of the IAM execution role used to create or update the stack set. /// </para> /// /// <para> /// Use customized execution roles to control which stack resources users and groups can /// include in their stack sets. /// </para> /// </summary> [AWSProperty(Min=1, Max=64)] public string ExecutionRoleName { get { return this._executionRoleName; } set { this._executionRoleName = value; } } // Check to see if ExecutionRoleName property is set internal bool IsSetExecutionRoleName() { return this._executionRoleName != null; } /// <summary> /// Gets and sets the property OperationId. /// <para> /// The unique ID of a stack set operation. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string OperationId { get { return this._operationId; } set { this._operationId = value; } } // Check to see if OperationId property is set internal bool IsSetOperationId() { return this._operationId != null; } /// <summary> /// Gets and sets the property OperationPreferences. /// <para> /// The preferences for how CloudFormation performs this stack set operation. /// </para> /// </summary> public StackSetOperationPreferences OperationPreferences { get { return this._operationPreferences; } set { this._operationPreferences = value; } } // Check to see if OperationPreferences property is set internal bool IsSetOperationPreferences() { return this._operationPreferences != null; } /// <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 re-associate a retained stack, or add an existing, saved stack to a new /// stack set. /// </para> /// </summary> public bool RetainStacks { get { return this._retainStacks.GetValueOrDefault(); } set { this._retainStacks = value; } } // Check to see if RetainStacks property is set internal bool IsSetRetainStacks() { return this._retainStacks.HasValue; } /// <summary> /// Gets and sets the property StackSetDriftDetectionDetails. /// <para> /// Detailed information about the drift status of the stack set. This includes information /// about drift operations currently being performed on the stack set. /// </para> /// /// <para> /// This information will only be present for stack set operations whose <code>Action</code> /// type is <code>DETECT_DRIFT</code>. /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-drift.html">Detecting /// Unmanaged Changes in Stack Sets</a> in the CloudFormation User Guide. /// </para> /// </summary> public StackSetDriftDetectionDetails StackSetDriftDetectionDetails { get { return this._stackSetDriftDetectionDetails; } set { this._stackSetDriftDetectionDetails = value; } } // Check to see if StackSetDriftDetectionDetails property is set internal bool IsSetStackSetDriftDetectionDetails() { return this._stackSetDriftDetectionDetails != null; } /// <summary> /// Gets and sets the property StackSetId. /// <para> /// The ID of the stack set. /// </para> /// </summary> 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; } /// <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 CloudFormation cancels the operation in any remaining /// Regions. /// </para> /// </li> <li> /// <para> /// <code>QUEUED</code>: [Service-managed permissions] For automatic deployments that /// require a sequence of operations, the operation is queued to be performed. For more /// information, see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-status-codes">stack /// set operation status codes</a> in the CloudFormation User Guide. /// </para> /// </li> <li> /// <para> /// <code>RUNNING</code>: The operation is currently being performed. /// </para> /// </li> <li> /// <para> /// <code>STOPPED</code>: The user has canceled 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> public StackSetOperationStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } /// <summary> /// Gets and sets the property StatusDetails. /// <para> /// Detailed information about the StackSet operation. /// </para> /// </summary> public StackSetOperationStatusDetails StatusDetails { get { return this._statusDetails; } set { this._statusDetails = value; } } // Check to see if StatusDetails property is set internal bool IsSetStatusDetails() { return this._statusDetails != null; } /// <summary> /// Gets and sets the property StatusReason. /// <para> /// The status of the operation in details. /// </para> /// </summary> public string StatusReason { get { return this._statusReason; } set { this._statusReason = value; } } // Check to see if StatusReason property is set internal bool IsSetStatusReason() { return this._statusReason != null; } } }
376
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The user-specified preferences for how CloudFormation performs a stack set operation. /// /// /// <para> /// For more information about maximum concurrent accounts and failure tolerance, see /// <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack /// set operation options</a>. /// </para> /// </summary> public partial class StackSetOperationPreferences { private int? _failureToleranceCount; private int? _failureTolerancePercentage; private int? _maxConcurrentCount; private int? _maxConcurrentPercentage; private RegionConcurrencyType _regionConcurrencyType; private List<string> _regionOrder = new List<string>(); /// <summary> /// Gets and sets the property FailureToleranceCount. /// <para> /// The number of accounts, per Region, for which this operation can fail before CloudFormation /// stops the operation in that Region. If the operation is stopped in a Region, 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> /// /// <para> /// By default, <code>0</code> is specified. /// </para> /// </summary> [AWSProperty(Min=0)] public int FailureToleranceCount { get { return this._failureToleranceCount.GetValueOrDefault(); } set { this._failureToleranceCount = value; } } // Check to see if FailureToleranceCount property is set internal bool IsSetFailureToleranceCount() { return this._failureToleranceCount.HasValue; } /// <summary> /// Gets and sets the property FailureTolerancePercentage. /// <para> /// The percentage of accounts, per Region, for which this stack operation can fail before /// CloudFormation stops the operation in that Region. If the operation is stopped in /// a Region, CloudFormation doesn't attempt the operation in any subsequent Regions. /// </para> /// /// <para> /// When calculating the number of accounts based on the specified percentage, 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> /// /// <para> /// By default, <code>0</code> is specified. /// </para> /// </summary> [AWSProperty(Min=0, Max=100)] public int FailureTolerancePercentage { get { return this._failureTolerancePercentage.GetValueOrDefault(); } set { this._failureTolerancePercentage = value; } } // Check to see if FailureTolerancePercentage property is set internal bool IsSetFailureTolerancePercentage() { return this._failureTolerancePercentage.HasValue; } /// <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> /// Note that this setting lets you specify the <i>maximum</i> for operations. For large /// deployments, under certain circumstances the actual number of accounts acted upon /// concurrently may be lower due to service throttling. /// </para> /// /// <para> /// Conditional: You must specify either <code>MaxConcurrentCount</code> or <code>MaxConcurrentPercentage</code>, /// but not both. /// </para> /// /// <para> /// By default, <code>1</code> is specified. /// </para> /// </summary> [AWSProperty(Min=1)] public int MaxConcurrentCount { get { return this._maxConcurrentCount.GetValueOrDefault(); } set { this._maxConcurrentCount = value; } } // Check to see if MaxConcurrentCount property is set internal bool IsSetMaxConcurrentCount() { return this._maxConcurrentCount.HasValue; } /// <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, 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> /// Note that this setting lets you specify the <i>maximum</i> for operations. For large /// deployments, under certain circumstances the actual number of accounts acted upon /// concurrently may be lower due to service throttling. /// </para> /// /// <para> /// Conditional: You must specify either <code>MaxConcurrentCount</code> or <code>MaxConcurrentPercentage</code>, /// but not both. /// </para> /// /// <para> /// By default, <code>1</code> is specified. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public int MaxConcurrentPercentage { get { return this._maxConcurrentPercentage.GetValueOrDefault(); } set { this._maxConcurrentPercentage = value; } } // Check to see if MaxConcurrentPercentage property is set internal bool IsSetMaxConcurrentPercentage() { return this._maxConcurrentPercentage.HasValue; } /// <summary> /// Gets and sets the property RegionConcurrencyType. /// <para> /// The concurrency type of deploying StackSets operations in Regions, could be in parallel /// or one Region at a time. /// </para> /// </summary> public RegionConcurrencyType RegionConcurrencyType { get { return this._regionConcurrencyType; } set { this._regionConcurrencyType = value; } } // Check to see if RegionConcurrencyType property is set internal bool IsSetRegionConcurrencyType() { return this._regionConcurrencyType != null; } /// <summary> /// Gets and sets the property RegionOrder. /// <para> /// The order of the Regions where you want to perform the stack operation. /// </para> /// </summary> public List<string> RegionOrder { get { return this._regionOrder; } set { this._regionOrder = value; } } // Check to see if RegionOrder property is set internal bool IsSetRegionOrder() { return this._regionOrder != null && this._regionOrder.Count > 0; } } }
229
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The structure that contains information about a specified operation's results for /// a given account in a given Region. /// </summary> public partial class StackSetOperationResultSummary { private string _account; private AccountGateResult _accountGateResult; private string _organizationalUnitId; private string _region; private StackSetOperationResultStatus _status; private string _statusReason; /// <summary> /// Gets and sets the property Account. /// <para> /// [Self-managed permissions] The name of the Amazon Web Services account for this operation /// result. /// </para> /// </summary> public string Account { get { return this._account; } set { this._account = value; } } // Check to see if Account property is set internal bool IsSetAccount() { return this._account != null; } /// <summary> /// Gets and sets the property AccountGateResult. /// <para> /// The results of the account gate function CloudFormation invokes, if present, before /// proceeding with stack set operations in an account. /// </para> /// </summary> public AccountGateResult AccountGateResult { get { return this._accountGateResult; } set { this._accountGateResult = value; } } // Check to see if AccountGateResult property is set internal bool IsSetAccountGateResult() { return this._accountGateResult != null; } /// <summary> /// Gets and sets the property OrganizationalUnitId. /// <para> /// [Service-managed permissions] The organization root ID or organizational unit (OU) /// IDs that you specified for <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html">DeploymentTargets</a>. /// </para> /// </summary> public string OrganizationalUnitId { get { return this._organizationalUnitId; } set { this._organizationalUnitId = value; } } // Check to see if OrganizationalUnitId property is set internal bool IsSetOrganizationalUnitId() { return this._organizationalUnitId != null; } /// <summary> /// Gets and sets the property Region. /// <para> /// The name of the Amazon Web Services Region for this operation result. /// </para> /// </summary> public string Region { get { return this._region; } set { this._region = value; } } // Check to see if Region property is set internal bool IsSetRegion() { return this._region != null; } /// <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 /// canceled. 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> public StackSetOperationResultStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } /// <summary> /// Gets and sets the property StatusReason. /// <para> /// The reason for the assigned result status. /// </para> /// </summary> public string StatusReason { get { return this._statusReason; } set { this._statusReason = value; } } // Check to see if StatusReason property is set internal bool IsSetStatusReason() { return this._statusReason != null; } } }
187
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Detailed information about the StackSet operation. /// </summary> public partial class StackSetOperationStatusDetails { private int? _failedStackInstancesCount; /// <summary> /// Gets and sets the property FailedStackInstancesCount. /// <para> /// The number of stack instances for which the StackSet operation failed. /// </para> /// </summary> [AWSProperty(Min=0)] public int FailedStackInstancesCount { get { return this._failedStackInstancesCount.GetValueOrDefault(); } set { this._failedStackInstancesCount = value; } } // Check to see if FailedStackInstancesCount property is set internal bool IsSetFailedStackInstancesCount() { return this._failedStackInstancesCount.HasValue; } } }
58
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The structures that contain summary information about the specified operation. /// </summary> public partial class StackSetOperationSummary { private StackSetOperationAction _action; private DateTime? _creationTimestamp; private DateTime? _endTimestamp; private string _operationId; private StackSetOperationPreferences _operationPreferences; private StackSetOperationStatus _status; private StackSetOperationStatusDetails _statusDetails; private string _statusReason; /// <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 and /// <i>all</i> associated stack set instances. /// </para> /// </summary> public StackSetOperationAction Action { get { return this._action; } set { this._action = value; } } // Check to see if Action property is set internal bool IsSetAction() { return this._action != null; } /// <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 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> public DateTime CreationTimestamp { get { return this._creationTimestamp.GetValueOrDefault(); } set { this._creationTimestamp = value; } } // Check to see if CreationTimestamp property is set internal bool IsSetCreationTimestamp() { return this._creationTimestamp.HasValue; } /// <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> public DateTime EndTimestamp { get { return this._endTimestamp.GetValueOrDefault(); } set { this._endTimestamp = value; } } // Check to see if EndTimestamp property is set internal bool IsSetEndTimestamp() { return this._endTimestamp.HasValue; } /// <summary> /// Gets and sets the property OperationId. /// <para> /// The unique ID of the stack set operation. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string OperationId { get { return this._operationId; } set { this._operationId = value; } } // Check to see if OperationId property is set internal bool IsSetOperationId() { return this._operationId != null; } /// <summary> /// Gets and sets the property OperationPreferences. /// <para> /// The user-specified preferences for how CloudFormation performs a stack set operation. /// </para> /// /// <para> /// For more information about maximum concurrent accounts and failure tolerance, see /// <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack /// set operation options</a>. /// </para> /// </summary> public StackSetOperationPreferences OperationPreferences { get { return this._operationPreferences; } set { this._operationPreferences = value; } } // Check to see if OperationPreferences property is set internal bool IsSetOperationPreferences() { return this._operationPreferences != null; } /// <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 CloudFormation cancels the operation in any remaining /// Regions. /// </para> /// </li> <li> /// <para> /// <code>QUEUED</code>: [Service-managed permissions] For automatic deployments that /// require a sequence of operations, the operation is queued to be performed. For more /// information, see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-status-codes">stack /// set operation status codes</a> in the CloudFormation User Guide. /// </para> /// </li> <li> /// <para> /// <code>RUNNING</code>: The operation is currently being performed. /// </para> /// </li> <li> /// <para> /// <code>STOPPED</code>: The user has canceled 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> public StackSetOperationStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } /// <summary> /// Gets and sets the property StatusDetails. /// <para> /// Detailed information about the stack set operation. /// </para> /// </summary> public StackSetOperationStatusDetails StatusDetails { get { return this._statusDetails; } set { this._statusDetails = value; } } // Check to see if StatusDetails property is set internal bool IsSetStatusDetails() { return this._statusDetails != null; } /// <summary> /// Gets and sets the property StatusReason. /// <para> /// The status of the operation in details. /// </para> /// </summary> public string StatusReason { get { return this._statusReason; } set { this._statusReason = value; } } // Check to see if StatusReason property is set internal bool IsSetStatusReason() { return this._statusReason != null; } } }
241
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The structures that contain summary information about the specified stack set. /// </summary> 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; /// <summary> /// Gets and sets the property AutoDeployment. /// <para> /// [Service-managed permissions] Describes whether StackSets automatically deploys to /// Organizations accounts that are added to a target organizational unit (OU). /// </para> /// </summary> 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; } /// <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> [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; } /// <summary> /// Gets and sets the property DriftStatus. /// <para> /// 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. /// </para> /// <ul> <li> /// <para> /// <code>DRIFTED</code>: One or more of the stack instances belonging to the stack set /// stack differs from the expected template and parameter configuration. A stack instance /// is considered to have drifted if one or more of the resources in the associated stack /// have drifted. /// </para> /// </li> <li> /// <para> /// <code>NOT_CHECKED</code>: CloudFormation hasn't checked the stack set for drift. /// </para> /// </li> <li> /// <para> /// <code>IN_SYNC</code>: All the stack instances belonging to the stack set stack match /// from the expected template and parameter configuration. /// </para> /// </li> <li> /// <para> /// <code>UNKNOWN</code>: This value is reserved for future use. /// </para> /// </li> </ul> /// </summary> 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; } /// <summary> /// Gets and sets the property LastDriftCheckTimestamp. /// <para> /// Most recent time when CloudFormation performed a drift detection operation on the /// stack set. This value will be <code>NULL</code> for any stack set on which drift detection /// hasn't yet been performed. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property ManagedExecution. /// <para> /// Describes whether StackSets performs non-conflicting operations concurrently and queues /// conflicting operations. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property PermissionModel. /// <para> /// Describes how the IAM roles required for stack set operations are created. /// </para> /// <ul> <li> /// <para> /// With <code>self-managed</code> permissions, you must create the administrator and /// execution roles required to deploy to target accounts. For more information, see <a /// href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html">Grant /// Self-Managed Stack Set Permissions</a>. /// </para> /// </li> <li> /// <para> /// With <code>service-managed</code> permissions, StackSets automatically creates the /// IAM roles required to deploy to accounts managed by Organizations. For more information, /// see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html">Grant /// Service-Managed Stack Set Permissions</a>. /// </para> /// </li> </ul> /// </summary> 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; } /// <summary> /// Gets and sets the property StackSetId. /// <para> /// The ID of the stack set. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property StackSetName. /// <para> /// The name of the stack set. /// </para> /// </summary> 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; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the stack set. /// </para> /// </summary> 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; } } }
252
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The StackSummary Data Type /// </summary> public partial class StackSummary { private DateTime? _creationTime; private DateTime? _deletionTime; private StackDriftInformationSummary _driftInformation; private DateTime? _lastUpdatedTime; private string _parentId; private string _rootId; private string _stackId; private string _stackName; private StackStatus _stackStatus; private string _stackStatusReason; private string _templateDescription; /// <summary> /// Gets and sets the property CreationTime. /// <para> /// The time the stack was created. /// </para> /// </summary> [AWSProperty(Required=true)] public DateTime CreationTime { get { return this._creationTime.GetValueOrDefault(); } set { this._creationTime = value; } } // Check to see if CreationTime property is set internal bool IsSetCreationTime() { return this._creationTime.HasValue; } /// <summary> /// Gets and sets the property DeletionTime. /// <para> /// The time the stack was deleted. /// </para> /// </summary> public DateTime DeletionTime { get { return this._deletionTime.GetValueOrDefault(); } set { this._deletionTime = value; } } // Check to see if DeletionTime property is set internal bool IsSetDeletionTime() { return this._deletionTime.HasValue; } /// <summary> /// Gets and sets the property DriftInformation. /// <para> /// Summarizes information about whether a stack's actual configuration differs, or has /// <i>drifted</i>, from its expected configuration, as defined in the stack template /// and any values specified as template parameters. For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html">Detecting /// Unregulated Configuration Changes to Stacks and Resources</a>. /// </para> /// </summary> public StackDriftInformationSummary DriftInformation { get { return this._driftInformation; } set { this._driftInformation = value; } } // Check to see if DriftInformation property is set internal bool IsSetDriftInformation() { return this._driftInformation != null; } /// <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> public DateTime LastUpdatedTime { get { return this._lastUpdatedTime.GetValueOrDefault(); } set { this._lastUpdatedTime = value; } } // Check to see if LastUpdatedTime property is set internal bool IsSetLastUpdatedTime() { return this._lastUpdatedTime.HasValue; } /// <summary> /// Gets and sets the property ParentId. /// <para> /// For nested stacks--stacks created as resources for another stack--the stack ID of /// the direct parent of this stack. For the first level of nested stacks, the root stack /// is also the parent stack. /// </para> /// /// <para> /// For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html">Working /// with Nested Stacks</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public string ParentId { get { return this._parentId; } set { this._parentId = value; } } // Check to see if ParentId property is set internal bool IsSetParentId() { return this._parentId != null; } /// <summary> /// Gets and sets the property RootId. /// <para> /// For nested stacks--stacks created as resources for another stack--the stack ID of /// the top-level stack to which the nested stack ultimately belongs. /// </para> /// /// <para> /// For more information, see <a href="http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html">Working /// with Nested Stacks</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public string RootId { get { return this._rootId; } set { this._rootId = value; } } // Check to see if RootId property is set internal bool IsSetRootId() { return this._rootId != null; } /// <summary> /// Gets and sets the property StackId. /// <para> /// Unique stack identifier. /// </para> /// </summary> public string StackId { get { return this._stackId; } set { this._stackId = value; } } // Check to see if StackId property is set internal bool IsSetStackId() { return this._stackId != null; } /// <summary> /// Gets and sets the property StackName. /// <para> /// The name associated with the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public string StackName { get { return this._stackName; } set { this._stackName = value; } } // Check to see if StackName property is set internal bool IsSetStackName() { return this._stackName != null; } /// <summary> /// Gets and sets the property StackStatus. /// <para> /// The current status of the stack. /// </para> /// </summary> [AWSProperty(Required=true)] public StackStatus StackStatus { get { return this._stackStatus; } set { this._stackStatus = value; } } // Check to see if StackStatus property is set internal bool IsSetStackStatus() { return this._stackStatus != null; } /// <summary> /// Gets and sets the property StackStatusReason. /// <para> /// Success/Failure message associated with the stack status. /// </para> /// </summary> public string StackStatusReason { get { return this._stackStatusReason; } set { this._stackStatusReason = value; } } // Check to see if StackStatusReason property is set internal bool IsSetStackStatusReason() { return this._stackStatusReason != null; } /// <summary> /// Gets and sets the property TemplateDescription. /// <para> /// The template description of the template used to create the stack. /// </para> /// </summary> public string TemplateDescription { get { return this._templateDescription; } set { this._templateDescription = value; } } // Check to see if TemplateDescription property is set internal bool IsSetTemplateDescription() { return this._templateDescription != null; } } }
267
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Another operation has been performed on this stack set since the specified operation /// was performed. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class StaleRequestException : AmazonCloudFormationException { /// <summary> /// Constructs a new StaleRequestException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public StaleRequestException(string message) : base(message) {} /// <summary> /// Construct instance of StaleRequestException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public StaleRequestException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of StaleRequestException /// </summary> /// <param name="innerException"></param> public StaleRequestException(Exception innerException) : base(innerException) {} /// <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> public StaleRequestException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public StaleRequestException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected StaleRequestException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
125
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the StopStackSetOperation operation. /// Stops an in-progress operation on a stack set and its associated stack instances. /// StackSets will cancel all the unstarted stack instance deployments and wait for those /// are in-progress to complete. /// </summary> public partial class StopStackSetOperationRequest : AmazonCloudFormationRequest { private CallAs _callAs; private string _operationId; private string _stackSetName; /// <summary> /// Gets and sets the property CallAs. /// <para> /// [Service-managed permissions] Specifies whether you are acting as an account administrator /// in the organization's management account or as a delegated administrator in a member /// account. /// </para> /// /// <para> /// By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with /// self-managed permissions. /// </para> /// <ul> <li> /// <para> /// If you are signed in to the management account, specify <code>SELF</code>. /// </para> /// </li> <li> /// <para> /// If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>. /// </para> /// /// <para> /// Your Amazon Web Services account must be registered as a delegated administrator in /// the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register /// a delegated administrator</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </li> </ul> /// </summary> public CallAs CallAs { get { return this._callAs; } set { this._callAs = value; } } // Check to see if CallAs property is set internal bool IsSetCallAs() { return this._callAs != null; } /// <summary> /// Gets and sets the property OperationId. /// <para> /// The ID of the stack operation. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string OperationId { get { return this._operationId; } set { this._operationId = value; } } // Check to see if OperationId property is set internal bool IsSetOperationId() { return this._operationId != null; } /// <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> [AWSProperty(Required=true)] 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; } } }
122
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the StopStackSetOperation operation. /// </summary> public partial class StopStackSetOperationResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The Tag type enables you to specify a key-value pair that can be used to store information /// about an CloudFormation stack. /// </summary> public partial class Tag { private string _key; private string _value; /// <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 (Amazon Web Services) /// have the reserved prefix: <code>aws:</code>. /// </para> /// </summary> [AWSProperty(Required=true, Min=1, Max=128)] public string Key { get { return this._key; } set { this._key = value; } } // Check to see if Key property is set internal bool IsSetKey() { return this._key != null; } /// <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> [AWSProperty(Required=true, Min=1, Max=256)] public string Value { get { return this._value; } set { this._value = value; } } // Check to see if Value property is set internal bool IsSetValue() { return this._value != null; } } }
82
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The TemplateParameter data type. /// </summary> public partial class TemplateParameter { private string _defaultValue; private string _description; private bool? _noEcho; private string _parameterKey; /// <summary> /// Gets and sets the property DefaultValue. /// <para> /// The default value associated with the parameter. /// </para> /// </summary> public string DefaultValue { get { return this._defaultValue; } set { this._defaultValue = value; } } // Check to see if DefaultValue property is set internal bool IsSetDefaultValue() { return this._defaultValue != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// User defined description associated with the parameter. /// </para> /// </summary> [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; } /// <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> public bool NoEcho { get { return this._noEcho.GetValueOrDefault(); } set { this._noEcho = value; } } // Check to see if NoEcho property is set internal bool IsSetNoEcho() { return this._noEcho.HasValue; } /// <summary> /// Gets and sets the property ParameterKey. /// <para> /// The name associated with the parameter. /// </para> /// </summary> public string ParameterKey { get { return this._parameterKey; } set { this._parameterKey = value; } } // Check to see if ParameterKey property is set internal bool IsSetParameterKey() { return this._parameterKey != null; } } }
116
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Container for the parameters to the TestType operation. /// Tests a registered extension to make sure it meets all necessary requirements for /// being published in the CloudFormation registry. /// /// <ul> <li> /// <para> /// For resource types, this includes passing all contracts tests defined for the type. /// </para> /// </li> <li> /// <para> /// For modules, this includes determining if the module's model meets all necessary requirements. /// </para> /// </li> </ul> /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-testing">Testing /// your public extension prior to publishing</a> in the <i>CloudFormation CLI User Guide</i>. /// </para> /// /// <para> /// If you don't specify a version, CloudFormation uses the default version of the extension /// in your account and Region for testing. /// </para> /// /// <para> /// To perform testing, CloudFormation assumes the execution role specified when the type /// was registered. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>. /// </para> /// /// <para> /// Once you've initiated testing on an extension using <code>TestType</code>, you can /// pass the returned <code>TypeVersionArn</code> into <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a> /// to monitor the current test status and test status description for the extension. /// </para> /// /// <para> /// An extension must have a test status of <code>PASSED</code> before it can be published. /// For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-publish.html">Publishing /// extensions to make them available for public use</a> in the <i>CloudFormation CLI /// User Guide</i>. /// </para> /// </summary> public partial class TestTypeRequest : AmazonCloudFormationRequest { private string _arn; private string _logDeliveryBucket; private ThirdPartyType _type; private string _typeName; private string _versionId; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the extension. /// </para> /// /// <para> /// Conditional: You must specify <code>Arn</code>, or <code>TypeName</code> and <code>Type</code>. /// </para> /// </summary> [AWSProperty(Max=1024)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property LogDeliveryBucket. /// <para> /// The S3 bucket to which CloudFormation delivers the contract test execution logs. /// </para> /// /// <para> /// CloudFormation delivers the logs by the time contract testing has completed and the /// extension has been assigned a test type status of <code>PASSED</code> or <code>FAILED</code>. /// </para> /// /// <para> /// The user calling <code>TestType</code> must be able to access items in the specified /// S3 bucket. Specifically, the user needs the following permissions: /// </para> /// <ul> <li> /// <para> /// <code>GetObject</code> /// </para> /// </li> <li> /// <para> /// <code>PutObject</code> /// </para> /// </li> </ul> /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3.html">Actions, /// Resources, and Condition Keys for Amazon S3</a> in the <i>Amazon Web Services Identity /// and Access Management User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=3, Max=63)] public string LogDeliveryBucket { get { return this._logDeliveryBucket; } set { this._logDeliveryBucket = value; } } // Check to see if LogDeliveryBucket property is set internal bool IsSetLogDeliveryBucket() { return this._logDeliveryBucket != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of the extension to test. /// </para> /// /// <para> /// Conditional: You must specify <code>Arn</code>, or <code>TypeName</code> and <code>Type</code>. /// </para> /// </summary> public ThirdPartyType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension to test. /// </para> /// /// <para> /// Conditional: You must specify <code>Arn</code>, or <code>TypeName</code> and <code>Type</code>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } /// <summary> /// Gets and sets the property VersionId. /// <para> /// The version of the extension to test. /// </para> /// /// <para> /// You can specify the version id with either <code>Arn</code>, or with <code>TypeName</code> /// and <code>Type</code>. /// </para> /// /// <para> /// If you don't specify a version, CloudFormation uses the default version of the extension /// in this account and Region for testing. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string VersionId { get { return this._versionId; } set { this._versionId = value; } } // Check to see if VersionId property is set internal bool IsSetVersionId() { return this._versionId != null; } } }
222
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// This is the response object from the TestType operation. /// </summary> public partial class TestTypeResponse : AmazonWebServiceResponse { private string _typeVersionArn; /// <summary> /// Gets and sets the property TypeVersionArn. /// <para> /// The Amazon Resource Name (ARN) of the extension. /// </para> /// </summary> [AWSProperty(Max=1024)] public string TypeVersionArn { get { return this._typeVersionArn; } set { this._typeVersionArn = value; } } // Check to see if TypeVersionArn property is set internal bool IsSetTypeVersionArn() { return this._typeVersionArn != null; } } }
58
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// A client request token already exists. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class TokenAlreadyExistsException : AmazonCloudFormationException { /// <summary> /// Constructs a new TokenAlreadyExistsException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public TokenAlreadyExistsException(string message) : base(message) {} /// <summary> /// Construct instance of TokenAlreadyExistsException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public TokenAlreadyExistsException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of TokenAlreadyExistsException /// </summary> /// <param name="innerException"></param> public TokenAlreadyExistsException(Exception innerException) : base(innerException) {} /// <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> public TokenAlreadyExistsException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <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> public TokenAlreadyExistsException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <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> protected TokenAlreadyExistsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Detailed information concerning the specification of a CloudFormation extension in /// a given account and Region. /// /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration">Configuring /// extensions at the account level</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> public partial class TypeConfigurationDetails { private string _alias; private string _arn; private string _configuration; private bool? _isDefaultConfiguration; private DateTime? _lastUpdated; private string _typeArn; private string _typeName; /// <summary> /// Gets and sets the property Alias. /// <para> /// The alias specified for this configuration, if one was specified when the configuration /// was set. /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string Alias { get { return this._alias; } set { this._alias = value; } } // Check to see if Alias property is set internal bool IsSetAlias() { return this._alias != null; } /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) for the configuration data, in this account and Region. /// </para> /// </summary> [AWSProperty(Max=1024)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property Configuration. /// <para> /// A JSON string specifying the configuration data for the extension, in this account /// and Region. /// </para> /// /// <para> /// If a configuration hasn't been set for a specified extension, CloudFormation returns /// <code>{}</code>. /// </para> /// </summary> [AWSProperty(Min=1, Max=204800)] public string Configuration { get { return this._configuration; } set { this._configuration = value; } } // Check to see if Configuration property is set internal bool IsSetConfiguration() { return this._configuration != null; } /// <summary> /// Gets and sets the property IsDefaultConfiguration. /// <para> /// Whether this configuration data is the default configuration for the extension. /// </para> /// </summary> public bool IsDefaultConfiguration { get { return this._isDefaultConfiguration.GetValueOrDefault(); } set { this._isDefaultConfiguration = value; } } // Check to see if IsDefaultConfiguration property is set internal bool IsSetIsDefaultConfiguration() { return this._isDefaultConfiguration.HasValue; } /// <summary> /// Gets and sets the property LastUpdated. /// <para> /// When the configuration data was last updated for this extension. /// </para> /// /// <para> /// If a configuration hasn't been set for a specified extension, CloudFormation returns /// <code>null</code>. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property TypeArn. /// <para> /// The Amazon Resource Name (ARN) for the extension, in this account and Region. /// </para> /// /// <para> /// For public extensions, this will be the ARN assigned when you <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">activate /// the type</a> in this account and Region. For private extensions, this will be the /// ARN assigned when you <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">register /// the type</a> in this account and Region. /// </para> /// </summary> [AWSProperty(Max=1024)] public string TypeArn { get { return this._typeArn; } set { this._typeArn = value; } } // Check to see if TypeArn property is set internal bool IsSetTypeArn() { return this._typeArn != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
202
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Identifying information for the configuration of a CloudFormation extension. /// </summary> public partial class TypeConfigurationIdentifier { private ThirdPartyType _type; private string _typeArn; private string _typeConfigurationAlias; private string _typeConfigurationArn; private string _typeName; /// <summary> /// Gets and sets the property Type. /// <para> /// The type of extension. /// </para> /// </summary> public ThirdPartyType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeArn. /// <para> /// The Amazon Resource Name (ARN) for the extension, in this account and Region. /// </para> /// /// <para> /// For public extensions, this will be the ARN assigned when you <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">activate /// the type</a> in this account and Region. For private extensions, this will be the /// ARN assigned when you <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">register /// the type</a> in this account and Region. /// </para> /// </summary> [AWSProperty(Max=1024)] public string TypeArn { get { return this._typeArn; } set { this._typeArn = value; } } // Check to see if TypeArn property is set internal bool IsSetTypeArn() { return this._typeArn != null; } /// <summary> /// Gets and sets the property TypeConfigurationAlias. /// <para> /// The alias specified for this configuration, if one was specified when the configuration /// was set. /// </para> /// </summary> [AWSProperty(Min=1, Max=256)] public string TypeConfigurationAlias { get { return this._typeConfigurationAlias; } set { this._typeConfigurationAlias = value; } } // Check to see if TypeConfigurationAlias property is set internal bool IsSetTypeConfigurationAlias() { return this._typeConfigurationAlias != null; } /// <summary> /// Gets and sets the property TypeConfigurationArn. /// <para> /// The Amazon Resource Name (ARN) for the configuration, in this account and Region. /// </para> /// </summary> [AWSProperty(Max=1024)] public string TypeConfigurationArn { get { return this._typeConfigurationArn; } set { this._typeConfigurationArn = value; } } // Check to see if TypeConfigurationArn property is set internal bool IsSetTypeConfigurationArn() { return this._typeConfigurationArn != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension type to which this configuration applies. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
145
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified extension configuration can't be found. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class TypeConfigurationNotFoundException : AmazonCloudFormationException { /// <summary> /// Constructs a new TypeConfigurationNotFoundException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public TypeConfigurationNotFoundException(string message) : base(message) {} /// <summary> /// Construct instance of TypeConfigurationNotFoundException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public TypeConfigurationNotFoundException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of TypeConfigurationNotFoundException /// </summary> /// <param name="innerException"></param> public TypeConfigurationNotFoundException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of TypeConfigurationNotFoundException /// </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> public TypeConfigurationNotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of TypeConfigurationNotFoundException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public TypeConfigurationNotFoundException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the TypeConfigurationNotFoundException 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> protected TypeConfigurationNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Filter criteria to use in determining which extensions to return. /// </summary> public partial class TypeFilters { private Category _category; private string _publisherId; private string _typeNamePrefix; /// <summary> /// Gets and sets the property Category. /// <para> /// The category of extensions to return. /// </para> /// <ul> <li> /// <para> /// <code>REGISTERED</code>: Private extensions that have been registered for this account /// and Region. /// </para> /// </li> <li> /// <para> /// <code>ACTIVATED</code>: Public extensions that have been activated for this account /// and Region. /// </para> /// </li> <li> /// <para> /// <code>THIRD_PARTY</code>: Extensions available for use from publishers other than /// Amazon. This includes: /// </para> /// <ul> <li> /// <para> /// Private extensions registered in the account. /// </para> /// </li> <li> /// <para> /// Public extensions from publishers other than Amazon, whether activated or not. /// </para> /// </li> </ul> </li> <li> /// <para> /// <code>AWS_TYPES</code>: Extensions available for use from Amazon. /// </para> /// </li> </ul> /// </summary> public Category Category { get { return this._category; } set { this._category = value; } } // Check to see if Category property is set internal bool IsSetCategory() { return this._category != null; } /// <summary> /// Gets and sets the property PublisherId. /// <para> /// The id of the publisher of the extension. /// </para> /// /// <para> /// Extensions published by Amazon aren't assigned a publisher ID. Use the <code>AWS_TYPES</code> /// category to specify a list of types published by Amazon. /// </para> /// </summary> [AWSProperty(Min=1, Max=40)] public string PublisherId { get { return this._publisherId; } set { this._publisherId = value; } } // Check to see if PublisherId property is set internal bool IsSetPublisherId() { return this._publisherId != null; } /// <summary> /// Gets and sets the property TypeNamePrefix. /// <para> /// A prefix to use as a filter for results. /// </para> /// </summary> [AWSProperty(Min=1, Max=204)] public string TypeNamePrefix { get { return this._typeNamePrefix; } set { this._typeNamePrefix = value; } } // Check to see if TypeNamePrefix property is set internal bool IsSetTypeNamePrefix() { return this._typeNamePrefix != null; } } }
130
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// The specified extension doesn't exist in the CloudFormation registry. /// </summary> #if !NETSTANDARD [Serializable] #endif public partial class TypeNotFoundException : AmazonCloudFormationException { /// <summary> /// Constructs a new TypeNotFoundException with the specified error /// message. /// </summary> /// <param name="message"> /// Describes the error encountered. /// </param> public TypeNotFoundException(string message) : base(message) {} /// <summary> /// Construct instance of TypeNotFoundException /// </summary> /// <param name="message"></param> /// <param name="innerException"></param> public TypeNotFoundException(string message, Exception innerException) : base(message, innerException) {} /// <summary> /// Construct instance of TypeNotFoundException /// </summary> /// <param name="innerException"></param> public TypeNotFoundException(Exception innerException) : base(innerException) {} /// <summary> /// Construct instance of TypeNotFoundException /// </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> public TypeNotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, innerException, errorType, errorCode, requestId, statusCode) {} /// <summary> /// Construct instance of TypeNotFoundException /// </summary> /// <param name="message"></param> /// <param name="errorType"></param> /// <param name="errorCode"></param> /// <param name="requestId"></param> /// <param name="statusCode"></param> public TypeNotFoundException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode) : base(message, errorType, errorCode, requestId, statusCode) {} #if !NETSTANDARD /// <summary> /// Constructs a new instance of the TypeNotFoundException 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> protected TypeNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// <summary> /// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception. /// </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 a null reference (Nothing in Visual Basic). </exception> #if BCL35 [System.Security.Permissions.SecurityPermission( System.Security.Permissions.SecurityAction.LinkDemand, Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] #endif [System.Security.SecurityCritical] // These FxCop rules are giving false-positives for this method [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); } #endif } }
124
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains summary information about the specified CloudFormation extension. /// </summary> public partial class TypeSummary { private string _defaultVersionId; private string _description; private bool? _isActivated; private DateTime? _lastUpdated; private string _latestPublicVersion; private string _originalTypeName; private string _publicVersionNumber; private string _publisherId; private IdentityProvider _publisherIdentity; private string _publisherName; private RegistryType _type; private string _typeArn; private string _typeName; /// <summary> /// Gets and sets the property DefaultVersionId. /// <para> /// The ID of the default version of the extension. The default version is used when the /// extension version isn't specified. /// </para> /// /// <para> /// This applies only to private extensions you have registered in your account. For public /// extensions, both those provided by Amazon and published by third parties, CloudFormation /// returns <code>null</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>. /// </para> /// /// <para> /// To set the default version of an extension, use <a>SetTypeDefaultVersion</a>. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string DefaultVersionId { get { return this._defaultVersionId; } set { this._defaultVersionId = value; } } // Check to see if DefaultVersionId property is set internal bool IsSetDefaultVersionId() { return this._defaultVersionId != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the extension. /// </para> /// </summary> [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; } /// <summary> /// Gets and sets the property IsActivated. /// <para> /// Whether the extension is activated for this account and Region. /// </para> /// /// <para> /// This applies only to third-party public extensions. Extensions published by Amazon /// are activated by default. /// </para> /// </summary> public bool IsActivated { get { return this._isActivated.GetValueOrDefault(); } set { this._isActivated = value; } } // Check to see if IsActivated property is set internal bool IsSetIsActivated() { return this._isActivated.HasValue; } /// <summary> /// Gets and sets the property LastUpdated. /// <para> /// When the specified extension version was registered. This applies only to: /// </para> /// <ul> <li> /// <para> /// Private extensions you have registered in your account. For more information, see /// <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>. /// </para> /// </li> <li> /// <para> /// Public extensions you have activated in your account with auto-update specified. For /// more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">ActivateType</a>. /// </para> /// </li> </ul> /// <para> /// For all other extension types, CloudFormation returns <code>null</code>. /// </para> /// </summary> public DateTime LastUpdated { get { return this._lastUpdated.GetValueOrDefault(); } set { this._lastUpdated = value; } } // Check to see if LastUpdated property is set internal bool IsSetLastUpdated() { return this._lastUpdated.HasValue; } /// <summary> /// Gets and sets the property LatestPublicVersion. /// <para> /// For public extensions that have been activated for this account and Region, the latest /// version of the public extension <i>that is available</i>. For any extensions other /// than activated third-arty extensions, CloudFormation returns <code>null</code>. /// </para> /// /// <para> /// How you specified <code>AutoUpdate</code> when enabling the extension affects whether /// CloudFormation automatically updates the extension in this account and Region when /// a new version is released. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-auto">Setting /// CloudFormation to automatically use new versions of extensions</a> in the <i>CloudFormation /// User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=5)] public string LatestPublicVersion { get { return this._latestPublicVersion; } set { this._latestPublicVersion = value; } } // Check to see if LatestPublicVersion property is set internal bool IsSetLatestPublicVersion() { return this._latestPublicVersion != null; } /// <summary> /// Gets and sets the property OriginalTypeName. /// <para> /// For public extensions that have been activated for this account and Region, the type /// name of the public extension. /// </para> /// /// <para> /// If you specified a <code>TypeNameAlias</code> when enabling the extension in this /// account and Region, CloudFormation treats that alias as the extension's type name /// within the account and Region, not the type name of the public extension. For more /// information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-alias">Specifying /// aliases to refer to extensions</a> in the <i>CloudFormation User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string OriginalTypeName { get { return this._originalTypeName; } set { this._originalTypeName = value; } } // Check to see if OriginalTypeName property is set internal bool IsSetOriginalTypeName() { return this._originalTypeName != null; } /// <summary> /// Gets and sets the property PublicVersionNumber. /// <para> /// For public extensions that have been activated for this account and Region, the version /// of the public extension to be used for CloudFormation operations in this account and /// Region. /// </para> /// /// <para> /// How you specified <code>AutoUpdate</code> when enabling the extension affects whether /// CloudFormation automatically updates the extension in this account and Region when /// a new version is released. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-auto">Setting /// CloudFormation to automatically use new versions of extensions</a> in the <i>CloudFormation /// User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=5)] public string PublicVersionNumber { get { return this._publicVersionNumber; } set { this._publicVersionNumber = value; } } // Check to see if PublicVersionNumber property is set internal bool IsSetPublicVersionNumber() { return this._publicVersionNumber != null; } /// <summary> /// Gets and sets the property PublisherId. /// <para> /// The ID of the extension publisher, if the extension is published by a third party. /// Extensions published by Amazon don't return a publisher ID. /// </para> /// </summary> [AWSProperty(Min=1, Max=40)] public string PublisherId { get { return this._publisherId; } set { this._publisherId = value; } } // Check to see if PublisherId property is set internal bool IsSetPublisherId() { return this._publisherId != null; } /// <summary> /// Gets and sets the property PublisherIdentity. /// <para> /// The service used to verify the publisher identity. /// </para> /// /// <para> /// For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html">Registering /// your account to publish CloudFormation extensions</a> in the <i> CFN-CLI User Guide /// for Extension Development</i>. /// </para> /// </summary> public IdentityProvider PublisherIdentity { get { return this._publisherIdentity; } set { this._publisherIdentity = value; } } // Check to see if PublisherIdentity property is set internal bool IsSetPublisherIdentity() { return this._publisherIdentity != null; } /// <summary> /// Gets and sets the property PublisherName. /// <para> /// The publisher name, as defined in the public profile for that publisher in the service /// used to verify the publisher identity. /// </para> /// </summary> [AWSProperty(Min=1, Max=100)] public string PublisherName { get { return this._publisherName; } set { this._publisherName = value; } } // Check to see if PublisherName property is set internal bool IsSetPublisherName() { return this._publisherName != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The kind of extension. /// </para> /// </summary> public RegistryType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeArn. /// <para> /// The Amazon Resource Name (ARN) of the extension. /// </para> /// </summary> [AWSProperty(Max=1024)] public string TypeArn { get { return this._typeArn; } set { this._typeArn = value; } } // Check to see if TypeArn property is set internal bool IsSetTypeArn() { return this._typeArn != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension. /// </para> /// /// <para> /// If you specified a <code>TypeNameAlias</code> when you <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ActivateType.html">activate /// this extension</a> in your account and Region, CloudFormation considers that alias /// as the type name. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } } }
367
aws-sdk-net
aws
C#
/* * 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 { /// <summary> /// Contains summary information about a specific version of a CloudFormation extension. /// </summary> public partial class TypeVersionSummary { private string _arn; private string _description; private bool? _isDefaultVersion; private string _publicVersionNumber; private DateTime? _timeCreated; private RegistryType _type; private string _typeName; private string _versionId; /// <summary> /// Gets and sets the property Arn. /// <para> /// The Amazon Resource Name (ARN) of the extension version. /// </para> /// </summary> [AWSProperty(Max=1024)] public string Arn { get { return this._arn; } set { this._arn = value; } } // Check to see if Arn property is set internal bool IsSetArn() { return this._arn != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the extension version. /// </para> /// </summary> [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; } /// <summary> /// Gets and sets the property IsDefaultVersion. /// <para> /// Whether the specified extension version is set as the default version. /// </para> /// /// <para> /// This applies only to private extensions you have registered in your account, and extensions /// published by Amazon. For public third-party extensions, CloudFormation returns <code>null</code>. /// </para> /// </summary> public bool IsDefaultVersion { get { return this._isDefaultVersion.GetValueOrDefault(); } set { this._isDefaultVersion = value; } } // Check to see if IsDefaultVersion property is set internal bool IsSetIsDefaultVersion() { return this._isDefaultVersion.HasValue; } /// <summary> /// Gets and sets the property PublicVersionNumber. /// <para> /// For public extensions that have been activated for this account and Region, the version /// of the public extension to be used for CloudFormation operations in this account and /// Region. For any extensions other than activated third-arty extensions, CloudFormation /// returns <code>null</code>. /// </para> /// /// <para> /// How you specified <code>AutoUpdate</code> when enabling the extension affects whether /// CloudFormation automatically updates the extension in this account and Region when /// a new version is released. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html#registry-public-enable-auto">Setting /// CloudFormation to automatically use new versions of extensions</a> in the <i>CloudFormation /// User Guide</i>. /// </para> /// </summary> [AWSProperty(Min=5)] public string PublicVersionNumber { get { return this._publicVersionNumber; } set { this._publicVersionNumber = value; } } // Check to see if PublicVersionNumber property is set internal bool IsSetPublicVersionNumber() { return this._publicVersionNumber != null; } /// <summary> /// Gets and sets the property TimeCreated. /// <para> /// When the version was registered. /// </para> /// </summary> public DateTime TimeCreated { get { return this._timeCreated.GetValueOrDefault(); } set { this._timeCreated = value; } } // Check to see if TimeCreated property is set internal bool IsSetTimeCreated() { return this._timeCreated.HasValue; } /// <summary> /// Gets and sets the property Type. /// <para> /// The kind of extension. /// </para> /// </summary> public RegistryType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property TypeName. /// <para> /// The name of the extension. /// </para> /// </summary> [AWSProperty(Min=10, Max=204)] public string TypeName { get { return this._typeName; } set { this._typeName = value; } } // Check to see if TypeName property is set internal bool IsSetTypeName() { return this._typeName != null; } /// <summary> /// Gets and sets the property VersionId. /// <para> /// The ID of a specific version of the extension. The version ID is the value at the /// end of the Amazon Resource Name (ARN) assigned to the extension version when it's /// registered. /// </para> /// </summary> [AWSProperty(Min=1, Max=128)] public string VersionId { get { return this._versionId; } set { this._versionId = value; } } // Check to see if VersionId property is set internal bool IsSetVersionId() { return this._versionId != null; } } }
213