/* * 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 wellarchitected-2020-03-31.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.WellArchitected.Model { /// /// The profile notification summary. /// public partial class ProfileNotificationSummary { private string _currentProfileVersion; private string _latestProfileVersion; private string _profileArn; private string _profileName; private ProfileNotificationType _type; private string _workloadId; private string _workloadName; /// /// Gets and sets the property CurrentProfileVersion. /// /// The current profile version. /// /// [AWSProperty(Min=1, Max=32)] public string CurrentProfileVersion { get { return this._currentProfileVersion; } set { this._currentProfileVersion = value; } } // Check to see if CurrentProfileVersion property is set internal bool IsSetCurrentProfileVersion() { return this._currentProfileVersion != null; } /// /// Gets and sets the property LatestProfileVersion. /// /// The latest profile version. /// /// [AWSProperty(Min=1, Max=32)] public string LatestProfileVersion { get { return this._latestProfileVersion; } set { this._latestProfileVersion = value; } } // Check to see if LatestProfileVersion property is set internal bool IsSetLatestProfileVersion() { return this._latestProfileVersion != null; } /// /// Gets and sets the property ProfileArn. /// /// The profile ARN. /// /// [AWSProperty(Max=2084)] public string ProfileArn { get { return this._profileArn; } set { this._profileArn = value; } } // Check to see if ProfileArn property is set internal bool IsSetProfileArn() { return this._profileArn != null; } /// /// Gets and sets the property ProfileName. /// /// The profile name. /// /// [AWSProperty(Min=3, Max=100)] public string ProfileName { get { return this._profileName; } set { this._profileName = value; } } // Check to see if ProfileName property is set internal bool IsSetProfileName() { return this._profileName != null; } /// /// Gets and sets the property Type. /// /// Type of notification. /// /// public ProfileNotificationType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// /// Gets and sets the property WorkloadId. /// [AWSProperty(Min=32, Max=32)] public string WorkloadId { get { return this._workloadId; } set { this._workloadId = value; } } // Check to see if WorkloadId property is set internal bool IsSetWorkloadId() { return this._workloadId != null; } /// /// Gets and sets the property WorkloadName. /// [AWSProperty(Min=3, Max=100)] public string WorkloadName { get { return this._workloadName; } set { this._workloadName = value; } } // Check to see if WorkloadName property is set internal bool IsSetWorkloadName() { return this._workloadName != null; } } }