/* * 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 CreateKxUser operation. /// public partial class CreateKxUserResponse : AmazonWebServiceResponse { private string _environmentId; private string _iamRole; private string _userArn; private string _userName; /// /// 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 IamRole. /// /// The IAM role ARN that will be associated with the user. /// /// [AWSProperty(Min=20, Max=2048)] public string IamRole { get { return this._iamRole; } set { this._iamRole = value; } } // Check to see if IamRole property is set internal bool IsSetIamRole() { return this._iamRole != null; } /// /// Gets and sets the property UserArn. /// /// The Amazon Resource Name (ARN) that identifies the user. For more information about /// ARNs and how to use ARNs in policies, see IAM /// Identifiers in the IAM User Guide. /// /// [AWSProperty(Min=20, Max=2048)] public string UserArn { get { return this._userArn; } set { this._userArn = value; } } // Check to see if UserArn property is set internal bool IsSetUserArn() { return this._userArn != null; } /// /// Gets and sets the property UserName. /// /// A unique identifier for the user. /// /// [AWSProperty(Min=1, Max=50)] public string UserName { get { return this._userName; } set { this._userName = value; } } // Check to see if UserName property is set internal bool IsSetUserName() { return this._userName != null; } } }