/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace finspace { namespace Model { /** *

The details of a kdb environment.

See Also:

AWS * API Reference

*/ class KxEnvironment { public: AWS_FINSPACE_API KxEnvironment(); AWS_FINSPACE_API KxEnvironment(Aws::Utils::Json::JsonView jsonValue); AWS_FINSPACE_API KxEnvironment& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_FINSPACE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the kdb environment.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the kdb environment.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the kdb environment.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the kdb environment.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the kdb environment.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the kdb environment.

*/ inline KxEnvironment& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the kdb environment.

*/ inline KxEnvironment& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the kdb environment.

*/ inline KxEnvironment& WithName(const char* value) { SetName(value); return *this;} /** *

A unique identifier for the kdb environment.

*/ inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; } /** *

A unique identifier for the kdb environment.

*/ inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; } /** *

A unique identifier for the kdb environment.

*/ inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; } /** *

A unique identifier for the kdb environment.

*/ inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); } /** *

A unique identifier for the kdb environment.

*/ inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); } /** *

A unique identifier for the kdb environment.

*/ inline KxEnvironment& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;} /** *

A unique identifier for the kdb environment.

*/ inline KxEnvironment& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;} /** *

A unique identifier for the kdb environment.

*/ inline KxEnvironment& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;} /** *

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

*/ inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; } /** *

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

*/ inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; } /** *

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

*/ inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; } /** *

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

*/ inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); } /** *

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

*/ inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); } /** *

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

*/ inline KxEnvironment& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;} /** *

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

*/ inline KxEnvironment& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;} /** *

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

*/ inline KxEnvironment& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;} /** *

The status of the environment creation.

  • CREATE_REQUESTED – * Environment creation has been requested.

  • CREATING – * Environment is in the process of being created.

  • *

    FAILED_CREATION – Environment creation has failed.

  • CREATED * – Environment is successfully created and is currently active.

  • *

    DELETE REQUESTED – Environment deletion has been requested.

  • *

    DELETING – Environment is in the process of being deleted.

  • *

    RETRY_DELETION – Initial environment deletion failed, system is reattempting * delete.

  • DELETED – Environment has been deleted.

  • *

    FAILED_DELETION – Environment deletion has failed.

*/ inline const EnvironmentStatus& GetStatus() const{ return m_status; } /** *

The status of the environment creation.

  • CREATE_REQUESTED – * Environment creation has been requested.

  • CREATING – * Environment is in the process of being created.

  • *

    FAILED_CREATION – Environment creation has failed.

  • CREATED * – Environment is successfully created and is currently active.

  • *

    DELETE REQUESTED – Environment deletion has been requested.

  • *

    DELETING – Environment is in the process of being deleted.

  • *

    RETRY_DELETION – Initial environment deletion failed, system is reattempting * delete.

  • DELETED – Environment has been deleted.

  • *

    FAILED_DELETION – Environment deletion has failed.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The status of the environment creation.

  • CREATE_REQUESTED – * Environment creation has been requested.

  • CREATING – * Environment is in the process of being created.

  • *

    FAILED_CREATION – Environment creation has failed.

  • CREATED * – Environment is successfully created and is currently active.

  • *

    DELETE REQUESTED – Environment deletion has been requested.

  • *

    DELETING – Environment is in the process of being deleted.

  • *

    RETRY_DELETION – Initial environment deletion failed, system is reattempting * delete.

  • DELETED – Environment has been deleted.

  • *

    FAILED_DELETION – Environment deletion has failed.

*/ inline void SetStatus(const EnvironmentStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The status of the environment creation.

  • CREATE_REQUESTED – * Environment creation has been requested.

  • CREATING – * Environment is in the process of being created.

  • *

    FAILED_CREATION – Environment creation has failed.

  • CREATED * – Environment is successfully created and is currently active.

  • *

    DELETE REQUESTED – Environment deletion has been requested.

  • *

    DELETING – Environment is in the process of being deleted.

  • *

    RETRY_DELETION – Initial environment deletion failed, system is reattempting * delete.

  • DELETED – Environment has been deleted.

  • *

    FAILED_DELETION – Environment deletion has failed.

*/ inline void SetStatus(EnvironmentStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The status of the environment creation.

  • CREATE_REQUESTED – * Environment creation has been requested.

  • CREATING – * Environment is in the process of being created.

  • *

    FAILED_CREATION – Environment creation has failed.

  • CREATED * – Environment is successfully created and is currently active.

  • *

    DELETE REQUESTED – Environment deletion has been requested.

  • *

    DELETING – Environment is in the process of being deleted.

  • *

    RETRY_DELETION – Initial environment deletion failed, system is reattempting * delete.

  • DELETED – Environment has been deleted.

  • *

    FAILED_DELETION – Environment deletion has failed.

*/ inline KxEnvironment& WithStatus(const EnvironmentStatus& value) { SetStatus(value); return *this;} /** *

The status of the environment creation.

  • CREATE_REQUESTED – * Environment creation has been requested.

  • CREATING – * Environment is in the process of being created.

  • *

    FAILED_CREATION – Environment creation has failed.

  • CREATED * – Environment is successfully created and is currently active.

  • *

    DELETE REQUESTED – Environment deletion has been requested.

  • *

    DELETING – Environment is in the process of being deleted.

  • *

    RETRY_DELETION – Initial environment deletion failed, system is reattempting * delete.

  • DELETED – Environment has been deleted.

  • *

    FAILED_DELETION – Environment deletion has failed.

*/ inline KxEnvironment& WithStatus(EnvironmentStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

The status of the network configuration.

*/ inline const TgwStatus& GetTgwStatus() const{ return m_tgwStatus; } /** *

The status of the network configuration.

*/ inline bool TgwStatusHasBeenSet() const { return m_tgwStatusHasBeenSet; } /** *

The status of the network configuration.

*/ inline void SetTgwStatus(const TgwStatus& value) { m_tgwStatusHasBeenSet = true; m_tgwStatus = value; } /** *

The status of the network configuration.

*/ inline void SetTgwStatus(TgwStatus&& value) { m_tgwStatusHasBeenSet = true; m_tgwStatus = std::move(value); } /** *

The status of the network configuration.

*/ inline KxEnvironment& WithTgwStatus(const TgwStatus& value) { SetTgwStatus(value); return *this;} /** *

The status of the network configuration.

*/ inline KxEnvironment& WithTgwStatus(TgwStatus&& value) { SetTgwStatus(std::move(value)); return *this;} /** *

The status of DNS configuration.

*/ inline const DnsStatus& GetDnsStatus() const{ return m_dnsStatus; } /** *

The status of DNS configuration.

*/ inline bool DnsStatusHasBeenSet() const { return m_dnsStatusHasBeenSet; } /** *

The status of DNS configuration.

*/ inline void SetDnsStatus(const DnsStatus& value) { m_dnsStatusHasBeenSet = true; m_dnsStatus = value; } /** *

The status of DNS configuration.

*/ inline void SetDnsStatus(DnsStatus&& value) { m_dnsStatusHasBeenSet = true; m_dnsStatus = std::move(value); } /** *

The status of DNS configuration.

*/ inline KxEnvironment& WithDnsStatus(const DnsStatus& value) { SetDnsStatus(value); return *this;} /** *

The status of DNS configuration.

*/ inline KxEnvironment& WithDnsStatus(DnsStatus&& value) { SetDnsStatus(std::move(value)); return *this;} /** *

Specifies the error message that appears if a flow fails.

*/ inline const Aws::String& GetErrorMessage() const{ return m_errorMessage; } /** *

Specifies the error message that appears if a flow fails.

*/ inline bool ErrorMessageHasBeenSet() const { return m_errorMessageHasBeenSet; } /** *

Specifies the error message that appears if a flow fails.

*/ inline void SetErrorMessage(const Aws::String& value) { m_errorMessageHasBeenSet = true; m_errorMessage = value; } /** *

Specifies the error message that appears if a flow fails.

*/ inline void SetErrorMessage(Aws::String&& value) { m_errorMessageHasBeenSet = true; m_errorMessage = std::move(value); } /** *

Specifies the error message that appears if a flow fails.

*/ inline void SetErrorMessage(const char* value) { m_errorMessageHasBeenSet = true; m_errorMessage.assign(value); } /** *

Specifies the error message that appears if a flow fails.

*/ inline KxEnvironment& WithErrorMessage(const Aws::String& value) { SetErrorMessage(value); return *this;} /** *

Specifies the error message that appears if a flow fails.

*/ inline KxEnvironment& WithErrorMessage(Aws::String&& value) { SetErrorMessage(std::move(value)); return *this;} /** *

Specifies the error message that appears if a flow fails.

*/ inline KxEnvironment& WithErrorMessage(const char* value) { SetErrorMessage(value); return *this;} /** *

A description of the kdb environment.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description of the kdb environment.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description of the kdb environment.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description of the kdb environment.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description of the kdb environment.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description of the kdb environment.

*/ inline KxEnvironment& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description of the kdb environment.

*/ inline KxEnvironment& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description of the kdb environment.

*/ inline KxEnvironment& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

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

*/ inline const Aws::String& GetEnvironmentArn() const{ return m_environmentArn; } /** *

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

*/ inline bool EnvironmentArnHasBeenSet() const { return m_environmentArnHasBeenSet; } /** *

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

*/ inline void SetEnvironmentArn(const Aws::String& value) { m_environmentArnHasBeenSet = true; m_environmentArn = value; } /** *

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

*/ inline void SetEnvironmentArn(Aws::String&& value) { m_environmentArnHasBeenSet = true; m_environmentArn = std::move(value); } /** *

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

*/ inline void SetEnvironmentArn(const char* value) { m_environmentArnHasBeenSet = true; m_environmentArn.assign(value); } /** *

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

*/ inline KxEnvironment& WithEnvironmentArn(const Aws::String& value) { SetEnvironmentArn(value); return *this;} /** *

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

*/ inline KxEnvironment& WithEnvironmentArn(Aws::String&& value) { SetEnvironmentArn(std::move(value)); return *this;} /** *

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

*/ inline KxEnvironment& WithEnvironmentArn(const char* value) { SetEnvironmentArn(value); return *this;} /** *

The unique identifier of the KMS key.

*/ inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; } /** *

The unique identifier of the KMS key.

*/ inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; } /** *

The unique identifier of the KMS key.

*/ inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; } /** *

The unique identifier of the KMS key.

*/ inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); } /** *

The unique identifier of the KMS key.

*/ inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); } /** *

The unique identifier of the KMS key.

*/ inline KxEnvironment& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;} /** *

The unique identifier of the KMS key.

*/ inline KxEnvironment& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;} /** *

The unique identifier of the KMS key.

*/ inline KxEnvironment& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;} /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline const Aws::String& GetDedicatedServiceAccountId() const{ return m_dedicatedServiceAccountId; } /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline bool DedicatedServiceAccountIdHasBeenSet() const { return m_dedicatedServiceAccountIdHasBeenSet; } /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline void SetDedicatedServiceAccountId(const Aws::String& value) { m_dedicatedServiceAccountIdHasBeenSet = true; m_dedicatedServiceAccountId = value; } /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline void SetDedicatedServiceAccountId(Aws::String&& value) { m_dedicatedServiceAccountIdHasBeenSet = true; m_dedicatedServiceAccountId = std::move(value); } /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline void SetDedicatedServiceAccountId(const char* value) { m_dedicatedServiceAccountIdHasBeenSet = true; m_dedicatedServiceAccountId.assign(value); } /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline KxEnvironment& WithDedicatedServiceAccountId(const Aws::String& value) { SetDedicatedServiceAccountId(value); return *this;} /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline KxEnvironment& WithDedicatedServiceAccountId(Aws::String&& value) { SetDedicatedServiceAccountId(std::move(value)); return *this;} /** *

A unique identifier for the AWS environment infrastructure account.

*/ inline KxEnvironment& WithDedicatedServiceAccountId(const char* value) { SetDedicatedServiceAccountId(value); return *this;} /** *

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

*/ inline const TransitGatewayConfiguration& GetTransitGatewayConfiguration() const{ return m_transitGatewayConfiguration; } /** *

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

*/ inline bool TransitGatewayConfigurationHasBeenSet() const { return m_transitGatewayConfigurationHasBeenSet; } /** *

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

*/ inline void SetTransitGatewayConfiguration(const TransitGatewayConfiguration& value) { m_transitGatewayConfigurationHasBeenSet = true; m_transitGatewayConfiguration = value; } /** *

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

*/ inline void SetTransitGatewayConfiguration(TransitGatewayConfiguration&& value) { m_transitGatewayConfigurationHasBeenSet = true; m_transitGatewayConfiguration = std::move(value); } /** *

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

*/ inline KxEnvironment& WithTransitGatewayConfiguration(const TransitGatewayConfiguration& value) { SetTransitGatewayConfiguration(value); return *this;} /** *

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

*/ inline KxEnvironment& WithTransitGatewayConfiguration(TransitGatewayConfiguration&& value) { SetTransitGatewayConfiguration(std::move(value)); return *this;} /** *

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

*/ inline const Aws::Vector& GetCustomDNSConfiguration() const{ return m_customDNSConfiguration; } /** *

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

*/ inline bool CustomDNSConfigurationHasBeenSet() const { return m_customDNSConfigurationHasBeenSet; } /** *

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

*/ inline void SetCustomDNSConfiguration(const Aws::Vector& value) { m_customDNSConfigurationHasBeenSet = true; m_customDNSConfiguration = value; } /** *

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

*/ inline void SetCustomDNSConfiguration(Aws::Vector&& value) { m_customDNSConfigurationHasBeenSet = true; m_customDNSConfiguration = std::move(value); } /** *

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

*/ inline KxEnvironment& WithCustomDNSConfiguration(const Aws::Vector& value) { SetCustomDNSConfiguration(value); return *this;} /** *

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

*/ inline KxEnvironment& WithCustomDNSConfiguration(Aws::Vector&& value) { SetCustomDNSConfiguration(std::move(value)); return *this;} /** *

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

*/ inline KxEnvironment& AddCustomDNSConfiguration(const CustomDNSServer& value) { m_customDNSConfigurationHasBeenSet = true; m_customDNSConfiguration.push_back(value); return *this; } /** *

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

*/ inline KxEnvironment& AddCustomDNSConfiguration(CustomDNSServer&& value) { m_customDNSConfigurationHasBeenSet = true; m_customDNSConfiguration.push_back(std::move(value)); return *this; } /** *

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.

*/ inline const Aws::Utils::DateTime& GetCreationTimestamp() const{ return m_creationTimestamp; } /** *

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.

*/ inline bool CreationTimestampHasBeenSet() const { return m_creationTimestampHasBeenSet; } /** *

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.

*/ inline void SetCreationTimestamp(const Aws::Utils::DateTime& value) { m_creationTimestampHasBeenSet = true; m_creationTimestamp = value; } /** *

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.

*/ inline void SetCreationTimestamp(Aws::Utils::DateTime&& value) { m_creationTimestampHasBeenSet = true; m_creationTimestamp = std::move(value); } /** *

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.

*/ inline KxEnvironment& WithCreationTimestamp(const Aws::Utils::DateTime& value) { SetCreationTimestamp(value); return *this;} /** *

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.

*/ inline KxEnvironment& WithCreationTimestamp(Aws::Utils::DateTime&& value) { SetCreationTimestamp(std::move(value)); return *this;} /** *

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.

*/ inline const Aws::Utils::DateTime& GetUpdateTimestamp() const{ return m_updateTimestamp; } /** *

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.

*/ inline bool UpdateTimestampHasBeenSet() const { return m_updateTimestampHasBeenSet; } /** *

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.

*/ inline void SetUpdateTimestamp(const Aws::Utils::DateTime& value) { m_updateTimestampHasBeenSet = true; m_updateTimestamp = value; } /** *

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.

*/ inline void SetUpdateTimestamp(Aws::Utils::DateTime&& value) { m_updateTimestampHasBeenSet = true; m_updateTimestamp = std::move(value); } /** *

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.

*/ inline KxEnvironment& WithUpdateTimestamp(const Aws::Utils::DateTime& value) { SetUpdateTimestamp(value); return *this;} /** *

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.

*/ inline KxEnvironment& WithUpdateTimestamp(Aws::Utils::DateTime&& value) { SetUpdateTimestamp(std::move(value)); return *this;} /** *

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

*/ inline const Aws::Vector& GetAvailabilityZoneIds() const{ return m_availabilityZoneIds; } /** *

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

*/ inline bool AvailabilityZoneIdsHasBeenSet() const { return m_availabilityZoneIdsHasBeenSet; } /** *

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

*/ inline void SetAvailabilityZoneIds(const Aws::Vector& value) { m_availabilityZoneIdsHasBeenSet = true; m_availabilityZoneIds = value; } /** *

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

*/ inline void SetAvailabilityZoneIds(Aws::Vector&& value) { m_availabilityZoneIdsHasBeenSet = true; m_availabilityZoneIds = std::move(value); } /** *

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

*/ inline KxEnvironment& WithAvailabilityZoneIds(const Aws::Vector& value) { SetAvailabilityZoneIds(value); return *this;} /** *

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

*/ inline KxEnvironment& WithAvailabilityZoneIds(Aws::Vector&& value) { SetAvailabilityZoneIds(std::move(value)); return *this;} /** *

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

*/ inline KxEnvironment& AddAvailabilityZoneIds(const Aws::String& value) { m_availabilityZoneIdsHasBeenSet = true; m_availabilityZoneIds.push_back(value); return *this; } /** *

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

*/ inline KxEnvironment& AddAvailabilityZoneIds(Aws::String&& value) { m_availabilityZoneIdsHasBeenSet = true; m_availabilityZoneIds.push_back(std::move(value)); return *this; } /** *

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

*/ inline KxEnvironment& AddAvailabilityZoneIds(const char* value) { m_availabilityZoneIdsHasBeenSet = true; m_availabilityZoneIds.push_back(value); return *this; } /** *

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

*/ inline const Aws::String& GetCertificateAuthorityArn() const{ return m_certificateAuthorityArn; } /** *

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

*/ inline bool CertificateAuthorityArnHasBeenSet() const { return m_certificateAuthorityArnHasBeenSet; } /** *

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

*/ inline void SetCertificateAuthorityArn(const Aws::String& value) { m_certificateAuthorityArnHasBeenSet = true; m_certificateAuthorityArn = value; } /** *

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

*/ inline void SetCertificateAuthorityArn(Aws::String&& value) { m_certificateAuthorityArnHasBeenSet = true; m_certificateAuthorityArn = std::move(value); } /** *

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

*/ inline void SetCertificateAuthorityArn(const char* value) { m_certificateAuthorityArnHasBeenSet = true; m_certificateAuthorityArn.assign(value); } /** *

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

*/ inline KxEnvironment& WithCertificateAuthorityArn(const Aws::String& value) { SetCertificateAuthorityArn(value); return *this;} /** *

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

*/ inline KxEnvironment& WithCertificateAuthorityArn(Aws::String&& value) { SetCertificateAuthorityArn(std::move(value)); return *this;} /** *

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

*/ inline KxEnvironment& WithCertificateAuthorityArn(const char* value) { SetCertificateAuthorityArn(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_environmentId; bool m_environmentIdHasBeenSet = false; Aws::String m_awsAccountId; bool m_awsAccountIdHasBeenSet = false; EnvironmentStatus m_status; bool m_statusHasBeenSet = false; TgwStatus m_tgwStatus; bool m_tgwStatusHasBeenSet = false; DnsStatus m_dnsStatus; bool m_dnsStatusHasBeenSet = false; Aws::String m_errorMessage; bool m_errorMessageHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_environmentArn; bool m_environmentArnHasBeenSet = false; Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet = false; Aws::String m_dedicatedServiceAccountId; bool m_dedicatedServiceAccountIdHasBeenSet = false; TransitGatewayConfiguration m_transitGatewayConfiguration; bool m_transitGatewayConfigurationHasBeenSet = false; Aws::Vector m_customDNSConfiguration; bool m_customDNSConfigurationHasBeenSet = false; Aws::Utils::DateTime m_creationTimestamp; bool m_creationTimestampHasBeenSet = false; Aws::Utils::DateTime m_updateTimestamp; bool m_updateTimestampHasBeenSet = false; Aws::Vector m_availabilityZoneIds; bool m_availabilityZoneIdsHasBeenSet = false; Aws::String m_certificateAuthorityArn; bool m_certificateAuthorityArnHasBeenSet = false; }; } // namespace Model } // namespace finspace } // namespace Aws