/* * 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 finspace-2021-03-12.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.Finspace.Model { /// /// This is the response object from the CreateKxEnvironment operation. /// public partial class CreateKxEnvironmentResponse : AmazonWebServiceResponse { private DateTime? _creationTimestamp; private string _description; private string _environmentArn; private string _environmentId; private string _kmsKeyId; private string _name; private EnvironmentStatus _status; /// /// Gets and sets the property CreationTimestamp. /// /// The timestamp at which the kdb environment was created in FinSpace. /// /// 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; } /// /// Gets and sets the property Description. /// /// A description for the kdb environment. /// /// [AWSProperty(Min=1, Max=1000)] public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// /// Gets and sets the property EnvironmentArn. /// /// The ARN identifier of the environment. /// /// [AWSProperty(Min=20, Max=2048)] public string EnvironmentArn { get { return this._environmentArn; } set { this._environmentArn = value; } } // Check to see if EnvironmentArn property is set internal bool IsSetEnvironmentArn() { return this._environmentArn != null; } /// /// Gets and sets the property EnvironmentId. /// /// A unique identifier for the kdb environment. /// /// [AWSProperty(Min=1, Max=26)] public string EnvironmentId { get { return this._environmentId; } set { this._environmentId = value; } } // Check to see if EnvironmentId property is set internal bool IsSetEnvironmentId() { return this._environmentId != null; } /// /// Gets and sets the property KmsKeyId. /// /// The KMS key ID to encrypt your data in the FinSpace environment. /// /// [AWSProperty(Min=1, Max=1000)] public string KmsKeyId { get { return this._kmsKeyId; } set { this._kmsKeyId = value; } } // Check to see if KmsKeyId property is set internal bool IsSetKmsKeyId() { return this._kmsKeyId != null; } /// /// Gets and sets the property Name. /// /// The name of the kdb environment. /// /// [AWSProperty(Min=3, Max=63)] 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 Status. /// /// The status of the kdb environment. /// /// public EnvironmentStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } } }