/* * 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 cluster. *

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

* The status of a cluster. *

* */ private String status; /** *

* The error message when a failed state occurs. *

*/ private String statusReason; /** *

* A unique name for the cluster. *

*/ private String clusterName; /** *

* Specifies the type of KDB database that is being created. The following types are available: *

* */ private String clusterType; /** *

* A description of the cluster. *

*/ private String clusterDescription; /** *

* A version of the FinSpace managed kdb to run. *

*/ private String releaseLabel; /** *

* Specifies a Q program that will be run at launch of a cluster. It is a relative path within .zip file that * contains the custom code, which will be loaded on the cluster. It must include the file name itself. For example, * somedir/init.q. *

*/ private String initializationScript; /** *

* An IAM role that defines a set of permissions associated with a cluster. These permissions are assumed when a * cluster attempts to access another cluster. *

*/ private String executionRole; /** *

* The number of availability zones assigned per cluster. This can be one of the following *

* */ private String azMode; /** *

* The availability zone identifiers for the requested regions. *

*/ private String availabilityZoneId; /** *

* The last time that the cluster was modified. 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 lastModifiedTimestamp; /** *

* The timestamp at which the cluster 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 createdTimestamp; /** *

* The status of a cluster. *

* * * @param status * The status of a cluster.

*