/* * Copyright 2018-2023 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. */ package com.amazonaws.services.finspace.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The details of a kdb environment. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class KxEnvironment implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the kdb environment. *

*/ private String name; /** *

* A unique identifier for the kdb environment. *

*/ private String environmentId; /** *

* The unique identifier of the AWS account in which you create the kdb environment. *

*/ private String awsAccountId; /** *

* The status of the environment creation. *

* */ private String status; /** *

* The status of the network configuration. *

*/ private String tgwStatus; /** *

* The status of DNS configuration. *

*/ private String dnsStatus; /** *

* Specifies the error message that appears if a flow fails. *

*/ private String errorMessage; /** *

* A description of the kdb environment. *

*/ private String description; /** *

* The Amazon Resource Name (ARN) of your kdb environment. *

*/ private String environmentArn; /** *

* The unique identifier of the KMS key. *

*/ private String kmsKeyId; /** *

* A unique identifier for the AWS environment infrastructure account. *

*/ private String dedicatedServiceAccountId; /** *

* Specifies the transit gateway and network configuration to connect the kdb environment to an internal network. *

*/ private TransitGatewayConfiguration transitGatewayConfiguration; /** *

* A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers. *

*/ private java.util.List customDNSConfiguration; /** *

* The timestamp at which the kdb environment was created in FinSpace. The value is determined as epoch time in * milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *

*/ private java.util.Date creationTimestamp; /** *

* The timestamp at which the kdb environment was modified in FinSpace. The value is determined as epoch time in * milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *

*/ private java.util.Date updateTimestamp; /** *

* The identifier of the availability zones where subnets for the environment are created. *

*/ private java.util.List availabilityZoneIds; /** *

* The Amazon Resource Name (ARN) of the certificate authority: *

*/ private String certificateAuthorityArn; /** *

* The name of the kdb environment. *

* * @param name * The name of the kdb environment. */ public void setName(String name) { this.name = name; } /** *

* The name of the kdb environment. *

* * @return The name of the kdb environment. */ public String getName() { return this.name; } /** *

* The name of the kdb environment. *

* * @param name * The name of the kdb environment. * @return Returns a reference to this object so that method calls can be chained together. */ public KxEnvironment withName(String name) { setName(name); return this; } /** *

* A unique identifier for the kdb environment. *

* * @param environmentId * A unique identifier for the kdb environment. */ public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; } /** *

* A unique identifier for the kdb environment. *

* * @return A unique identifier for the kdb environment. */ public String getEnvironmentId() { return this.environmentId; } /** *

* A unique identifier for the kdb environment. *

* * @param environmentId * A unique identifier for the kdb environment. * @return Returns a reference to this object so that method calls can be chained together. */ public KxEnvironment withEnvironmentId(String environmentId) { setEnvironmentId(environmentId); return this; } /** *

* The unique identifier of the AWS account in which you create the kdb environment. *

* * @param awsAccountId * The unique identifier of the AWS account in which you create the kdb environment. */ public void setAwsAccountId(String awsAccountId) { this.awsAccountId = awsAccountId; } /** *

* The unique identifier of the AWS account in which you create the kdb environment. *

* * @return The unique identifier of the AWS account in which you create the kdb environment. */ public String getAwsAccountId() { return this.awsAccountId; } /** *

* The unique identifier of the AWS account in which you create the kdb environment. *

* * @param awsAccountId * The unique identifier of the AWS account in which you create the kdb environment. * @return Returns a reference to this object so that method calls can be chained together. */ public KxEnvironment withAwsAccountId(String awsAccountId) { setAwsAccountId(awsAccountId); return this; } /** *

* The status of the environment creation. *

* * * @param status * The status of the environment creation.

*