/* * 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 ssm-2014-11-06.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.SimpleSystemsManagement.Model { /// /// Status information about the association. /// public partial class InstanceAssociationStatusInfo { private string _associationId; private string _associationName; private string _associationVersion; private string _detailedStatus; private string _documentVersion; private string _errorCode; private DateTime? _executionDate; private string _executionSummary; private string _instanceId; private string _name; private InstanceAssociationOutputUrl _outputUrl; private string _status; /// /// Gets and sets the property AssociationId. /// /// The association ID. /// /// public string AssociationId { get { return this._associationId; } set { this._associationId = value; } } // Check to see if AssociationId property is set internal bool IsSetAssociationId() { return this._associationId != null; } /// /// Gets and sets the property AssociationName. /// /// The name of the association applied to the managed node. /// /// public string AssociationName { get { return this._associationName; } set { this._associationName = value; } } // Check to see if AssociationName property is set internal bool IsSetAssociationName() { return this._associationName != null; } /// /// Gets and sets the property AssociationVersion. /// /// The version of the association applied to the managed node. /// /// public string AssociationVersion { get { return this._associationVersion; } set { this._associationVersion = value; } } // Check to see if AssociationVersion property is set internal bool IsSetAssociationVersion() { return this._associationVersion != null; } /// /// Gets and sets the property DetailedStatus. /// /// Detailed status information about the association. /// /// public string DetailedStatus { get { return this._detailedStatus; } set { this._detailedStatus = value; } } // Check to see if DetailedStatus property is set internal bool IsSetDetailedStatus() { return this._detailedStatus != null; } /// /// Gets and sets the property DocumentVersion. /// /// The association document versions. /// /// public string DocumentVersion { get { return this._documentVersion; } set { this._documentVersion = value; } } // Check to see if DocumentVersion property is set internal bool IsSetDocumentVersion() { return this._documentVersion != null; } /// /// Gets and sets the property ErrorCode. /// /// An error code returned by the request to create the association. /// /// [AWSProperty(Max=10)] public string ErrorCode { get { return this._errorCode; } set { this._errorCode = value; } } // Check to see if ErrorCode property is set internal bool IsSetErrorCode() { return this._errorCode != null; } /// /// Gets and sets the property ExecutionDate. /// /// The date the association ran. /// /// public DateTime ExecutionDate { get { return this._executionDate.GetValueOrDefault(); } set { this._executionDate = value; } } // Check to see if ExecutionDate property is set internal bool IsSetExecutionDate() { return this._executionDate.HasValue; } /// /// Gets and sets the property ExecutionSummary. /// /// Summary information about association execution. /// /// [AWSProperty(Min=1, Max=512)] public string ExecutionSummary { get { return this._executionSummary; } set { this._executionSummary = value; } } // Check to see if ExecutionSummary property is set internal bool IsSetExecutionSummary() { return this._executionSummary != null; } /// /// Gets and sets the property InstanceId. /// /// The managed node ID where the association was created. /// /// public string InstanceId { get { return this._instanceId; } set { this._instanceId = value; } } // Check to see if InstanceId property is set internal bool IsSetInstanceId() { return this._instanceId != null; } /// /// Gets and sets the property Name. /// /// The name of the association. /// /// 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; } /// /// Gets and sets the property OutputUrl. /// /// A URL for an S3 bucket where you want to store the results of this request. /// /// public InstanceAssociationOutputUrl OutputUrl { get { return this._outputUrl; } set { this._outputUrl = value; } } // Check to see if OutputUrl property is set internal bool IsSetOutputUrl() { return this._outputUrl != null; } /// /// Gets and sets the property Status. /// /// Status information about the association. /// /// public string Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }