/// <summary> /// Initializes a new instance of the <see cref="KmsCreateRequestParameters" /> class. /// </summary> /// <param name="awsKms">awsKms.</param> /// <param name="cryptsoftKms">cryptsoftKms.</param> /// <param name="id">The Id of a KMS server..</param> /// <param name="serverName">Specifies the name given to the KMS Server..</param> /// <param name="serverType">Specifies the type of key mangement system. 'kInternalKms' indicates an internal KMS object. 'kAwsKms' indicates an Aws KMS object. 'kCryptsoftKms' indicates a Cryptsoft KMS object..</param> public KmsCreateRequestParameters(AwsKmsConfiguration awsKms = default(AwsKmsConfiguration), CryptsoftKmsConfiguration cryptsoftKms = default(CryptsoftKmsConfiguration), long?id = default(long?), string serverName = default(string), ServerTypeEnum?serverType = default(ServerTypeEnum?)) { this.Id = id; this.ServerName = serverName; this.ServerType = serverType; this.AwsKms = awsKms; this.CryptsoftKms = cryptsoftKms; this.Id = id; this.ServerName = serverName; this.ServerType = serverType; }
/// <summary> /// Initializes a new instance of the <see cref="KmsConfigurationResponse" /> class. /// </summary> /// <param name="awsKms">awsKms.</param> /// <param name="connectionStatus">Specifies if connection to this KMS exists..</param> /// <param name="cryptsoftKms">cryptsoftKms.</param> /// <param name="id">The Id of a KMS server..</param> /// <param name="serverName">Specifies the name given to the KMS Server..</param> /// <param name="serverType">Specifies the type of key mangement system. 'kInternalKms' indicates an internal KMS object. 'kAwsKms' indicates an Aws KMS object. 'kCryptsoftKms' indicates a Cryptsoft KMS object..</param> public KmsConfigurationResponse(AwsKmsConfiguration awsKms = default(AwsKmsConfiguration), bool?connectionStatus = default(bool?), CryptsoftKmsConfigResponse cryptsoftKms = default(CryptsoftKmsConfigResponse), long?id = default(long?), string serverName = default(string), ServerTypeEnum?serverType = default(ServerTypeEnum?)) { this.ConnectionStatus = connectionStatus; this.Id = id; this.ServerName = serverName; this.ServerType = serverType; this.AwsKms = awsKms; this.ConnectionStatus = connectionStatus; this.CryptsoftKms = cryptsoftKms; this.Id = id; this.ServerName = serverName; this.ServerType = serverType; }