/** * 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 namespace Aws { namespace Neptune { namespace Model { /** */ class CreateDBClusterRequest : public NeptuneRequest { public: AWS_NEPTUNE_API CreateDBClusterRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateDBCluster"; } AWS_NEPTUNE_API Aws::String SerializePayload() const override; protected: AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline const Aws::Vector& GetAvailabilityZones() const{ return m_availabilityZones; } /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline bool AvailabilityZonesHasBeenSet() const { return m_availabilityZonesHasBeenSet; } /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline void SetAvailabilityZones(const Aws::Vector& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones = value; } /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline void SetAvailabilityZones(Aws::Vector&& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones = std::move(value); } /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline CreateDBClusterRequest& WithAvailabilityZones(const Aws::Vector& value) { SetAvailabilityZones(value); return *this;} /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline CreateDBClusterRequest& WithAvailabilityZones(Aws::Vector&& value) { SetAvailabilityZones(std::move(value)); return *this;} /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline CreateDBClusterRequest& AddAvailabilityZones(const Aws::String& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(value); return *this; } /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline CreateDBClusterRequest& AddAvailabilityZones(Aws::String&& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(std::move(value)); return *this; } /** *

A list of EC2 Availability Zones that instances in the DB cluster can be * created in.

*/ inline CreateDBClusterRequest& AddAvailabilityZones(const char* value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(value); return *this; } /** *

The number of days for which automated backups are retained. You must specify * a minimum value of 1.

Default: 1

Constraints:

  • *

    Must be a value from 1 to 35

*/ inline int GetBackupRetentionPeriod() const{ return m_backupRetentionPeriod; } /** *

The number of days for which automated backups are retained. You must specify * a minimum value of 1.

Default: 1

Constraints:

  • *

    Must be a value from 1 to 35

*/ inline bool BackupRetentionPeriodHasBeenSet() const { return m_backupRetentionPeriodHasBeenSet; } /** *

The number of days for which automated backups are retained. You must specify * a minimum value of 1.

Default: 1

Constraints:

  • *

    Must be a value from 1 to 35

*/ inline void SetBackupRetentionPeriod(int value) { m_backupRetentionPeriodHasBeenSet = true; m_backupRetentionPeriod = value; } /** *

The number of days for which automated backups are retained. You must specify * a minimum value of 1.

Default: 1

Constraints:

  • *

    Must be a value from 1 to 35

*/ inline CreateDBClusterRequest& WithBackupRetentionPeriod(int value) { SetBackupRetentionPeriod(value); return *this;} /** *

(Not supported by Neptune)

*/ inline const Aws::String& GetCharacterSetName() const{ return m_characterSetName; } /** *

(Not supported by Neptune)

*/ inline bool CharacterSetNameHasBeenSet() const { return m_characterSetNameHasBeenSet; } /** *

(Not supported by Neptune)

*/ inline void SetCharacterSetName(const Aws::String& value) { m_characterSetNameHasBeenSet = true; m_characterSetName = value; } /** *

(Not supported by Neptune)

*/ inline void SetCharacterSetName(Aws::String&& value) { m_characterSetNameHasBeenSet = true; m_characterSetName = std::move(value); } /** *

(Not supported by Neptune)

*/ inline void SetCharacterSetName(const char* value) { m_characterSetNameHasBeenSet = true; m_characterSetName.assign(value); } /** *

(Not supported by Neptune)

*/ inline CreateDBClusterRequest& WithCharacterSetName(const Aws::String& value) { SetCharacterSetName(value); return *this;} /** *

(Not supported by Neptune)

*/ inline CreateDBClusterRequest& WithCharacterSetName(Aws::String&& value) { SetCharacterSetName(std::move(value)); return *this;} /** *

(Not supported by Neptune)

*/ inline CreateDBClusterRequest& WithCharacterSetName(const char* value) { SetCharacterSetName(value); return *this;} /** *

If set to true, tags are copied to any snapshot of the DB * cluster that is created.

*/ inline bool GetCopyTagsToSnapshot() const{ return m_copyTagsToSnapshot; } /** *

If set to true, tags are copied to any snapshot of the DB * cluster that is created.

*/ inline bool CopyTagsToSnapshotHasBeenSet() const { return m_copyTagsToSnapshotHasBeenSet; } /** *

If set to true, tags are copied to any snapshot of the DB * cluster that is created.

*/ inline void SetCopyTagsToSnapshot(bool value) { m_copyTagsToSnapshotHasBeenSet = true; m_copyTagsToSnapshot = value; } /** *

If set to true, tags are copied to any snapshot of the DB * cluster that is created.

*/ inline CreateDBClusterRequest& WithCopyTagsToSnapshot(bool value) { SetCopyTagsToSnapshot(value); return *this;} /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline const Aws::String& GetDatabaseName() const{ return m_databaseName; } /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; } /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline void SetDatabaseName(const Aws::String& value) { m_databaseNameHasBeenSet = true; m_databaseName = value; } /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline void SetDatabaseName(Aws::String&& value) { m_databaseNameHasBeenSet = true; m_databaseName = std::move(value); } /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline void SetDatabaseName(const char* value) { m_databaseNameHasBeenSet = true; m_databaseName.assign(value); } /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline CreateDBClusterRequest& WithDatabaseName(const Aws::String& value) { SetDatabaseName(value); return *this;} /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline CreateDBClusterRequest& WithDatabaseName(Aws::String&& value) { SetDatabaseName(std::move(value)); return *this;} /** *

The name for your database of up to 64 alpha-numeric characters. If you do * not provide a name, Amazon Neptune will not create a database in the DB cluster * you are creating.

*/ inline CreateDBClusterRequest& WithDatabaseName(const char* value) { SetDatabaseName(value); return *this;} /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline const Aws::String& GetDBClusterIdentifier() const{ return m_dBClusterIdentifier; } /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline bool DBClusterIdentifierHasBeenSet() const { return m_dBClusterIdentifierHasBeenSet; } /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline void SetDBClusterIdentifier(const Aws::String& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = value; } /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline void SetDBClusterIdentifier(Aws::String&& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = std::move(value); } /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline void SetDBClusterIdentifier(const char* value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier.assign(value); } /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline CreateDBClusterRequest& WithDBClusterIdentifier(const Aws::String& value) { SetDBClusterIdentifier(value); return *this;} /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline CreateDBClusterRequest& WithDBClusterIdentifier(Aws::String&& value) { SetDBClusterIdentifier(std::move(value)); return *this;} /** *

The DB cluster identifier. This parameter is stored as a lowercase * string.

Constraints:

  • Must contain from 1 to 63 letters, * numbers, or hyphens.

  • First character must be a letter.

    *
  • Cannot end with a hyphen or contain two consecutive hyphens.

    *

Example: my-cluster1

*/ inline CreateDBClusterRequest& WithDBClusterIdentifier(const char* value) { SetDBClusterIdentifier(value); return *this;} /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; } /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline bool DBClusterParameterGroupNameHasBeenSet() const { return m_dBClusterParameterGroupNameHasBeenSet; } /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = value; } /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::move(value); } /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName.assign(value); } /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline CreateDBClusterRequest& WithDBClusterParameterGroupName(const Aws::String& value) { SetDBClusterParameterGroupName(value); return *this;} /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline CreateDBClusterRequest& WithDBClusterParameterGroupName(Aws::String&& value) { SetDBClusterParameterGroupName(std::move(value)); return *this;} /** *

The name of the DB cluster parameter group to associate with this DB * cluster. If this argument is omitted, the default is used.

*

Constraints:

  • If supplied, must match the name of an existing * DBClusterParameterGroup.

*/ inline CreateDBClusterRequest& WithDBClusterParameterGroupName(const char* value) { SetDBClusterParameterGroupName(value); return *this;} /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline const Aws::Vector& GetVpcSecurityGroupIds() const{ return m_vpcSecurityGroupIds; } /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline bool VpcSecurityGroupIdsHasBeenSet() const { return m_vpcSecurityGroupIdsHasBeenSet; } /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline void SetVpcSecurityGroupIds(const Aws::Vector& value) { m_vpcSecurityGroupIdsHasBeenSet = true; m_vpcSecurityGroupIds = value; } /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline void SetVpcSecurityGroupIds(Aws::Vector&& value) { m_vpcSecurityGroupIdsHasBeenSet = true; m_vpcSecurityGroupIds = std::move(value); } /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline CreateDBClusterRequest& WithVpcSecurityGroupIds(const Aws::Vector& value) { SetVpcSecurityGroupIds(value); return *this;} /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline CreateDBClusterRequest& WithVpcSecurityGroupIds(Aws::Vector&& value) { SetVpcSecurityGroupIds(std::move(value)); return *this;} /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline CreateDBClusterRequest& AddVpcSecurityGroupIds(const Aws::String& value) { m_vpcSecurityGroupIdsHasBeenSet = true; m_vpcSecurityGroupIds.push_back(value); return *this; } /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline CreateDBClusterRequest& AddVpcSecurityGroupIds(Aws::String&& value) { m_vpcSecurityGroupIdsHasBeenSet = true; m_vpcSecurityGroupIds.push_back(std::move(value)); return *this; } /** *

A list of EC2 VPC security groups to associate with this DB cluster.

*/ inline CreateDBClusterRequest& AddVpcSecurityGroupIds(const char* value) { m_vpcSecurityGroupIdsHasBeenSet = true; m_vpcSecurityGroupIds.push_back(value); return *this; } /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline const Aws::String& GetDBSubnetGroupName() const{ return m_dBSubnetGroupName; } /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline bool DBSubnetGroupNameHasBeenSet() const { return m_dBSubnetGroupNameHasBeenSet; } /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline void SetDBSubnetGroupName(const Aws::String& value) { m_dBSubnetGroupNameHasBeenSet = true; m_dBSubnetGroupName = value; } /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline void SetDBSubnetGroupName(Aws::String&& value) { m_dBSubnetGroupNameHasBeenSet = true; m_dBSubnetGroupName = std::move(value); } /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline void SetDBSubnetGroupName(const char* value) { m_dBSubnetGroupNameHasBeenSet = true; m_dBSubnetGroupName.assign(value); } /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline CreateDBClusterRequest& WithDBSubnetGroupName(const Aws::String& value) { SetDBSubnetGroupName(value); return *this;} /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline CreateDBClusterRequest& WithDBSubnetGroupName(Aws::String&& value) { SetDBSubnetGroupName(std::move(value)); return *this;} /** *

A DB subnet group to associate with this DB cluster.

Constraints: Must * match the name of an existing DBSubnetGroup. Must not be default.

*

Example: mySubnetgroup

*/ inline CreateDBClusterRequest& WithDBSubnetGroupName(const char* value) { SetDBSubnetGroupName(value); return *this;} /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline const Aws::String& GetEngine() const{ return m_engine; } /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline bool EngineHasBeenSet() const { return m_engineHasBeenSet; } /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline void SetEngine(const Aws::String& value) { m_engineHasBeenSet = true; m_engine = value; } /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline void SetEngine(Aws::String&& value) { m_engineHasBeenSet = true; m_engine = std::move(value); } /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline void SetEngine(const char* value) { m_engineHasBeenSet = true; m_engine.assign(value); } /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline CreateDBClusterRequest& WithEngine(const Aws::String& value) { SetEngine(value); return *this;} /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline CreateDBClusterRequest& WithEngine(Aws::String&& value) { SetEngine(std::move(value)); return *this;} /** *

The name of the database engine to be used for this DB cluster.

Valid * Values: neptune

*/ inline CreateDBClusterRequest& WithEngine(const char* value) { SetEngine(value); return *this;} /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline const Aws::String& GetEngineVersion() const{ return m_engineVersion; } /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline bool EngineVersionHasBeenSet() const { return m_engineVersionHasBeenSet; } /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline void SetEngineVersion(const Aws::String& value) { m_engineVersionHasBeenSet = true; m_engineVersion = value; } /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline void SetEngineVersion(Aws::String&& value) { m_engineVersionHasBeenSet = true; m_engineVersion = std::move(value); } /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline void SetEngineVersion(const char* value) { m_engineVersionHasBeenSet = true; m_engineVersion.assign(value); } /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline CreateDBClusterRequest& WithEngineVersion(const Aws::String& value) { SetEngineVersion(value); return *this;} /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline CreateDBClusterRequest& WithEngineVersion(Aws::String&& value) { SetEngineVersion(std::move(value)); return *this;} /** *

The version number of the database engine to use for the new DB cluster.

*

Example: 1.0.2.1

*/ inline CreateDBClusterRequest& WithEngineVersion(const char* value) { SetEngineVersion(value); return *this;} /** *

The port number on which the instances in the DB cluster accept * connections.

Default: 8182

*/ inline int GetPort() const{ return m_port; } /** *

The port number on which the instances in the DB cluster accept * connections.

Default: 8182

*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *

The port number on which the instances in the DB cluster accept * connections.

Default: 8182

*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *

The port number on which the instances in the DB cluster accept * connections.

Default: 8182

*/ inline CreateDBClusterRequest& WithPort(int value) { SetPort(value); return *this;} /** *

Not supported by Neptune.

*/ inline const Aws::String& GetMasterUsername() const{ return m_masterUsername; } /** *

Not supported by Neptune.

*/ inline bool MasterUsernameHasBeenSet() const { return m_masterUsernameHasBeenSet; } /** *

Not supported by Neptune.

*/ inline void SetMasterUsername(const Aws::String& value) { m_masterUsernameHasBeenSet = true; m_masterUsername = value; } /** *

Not supported by Neptune.

*/ inline void SetMasterUsername(Aws::String&& value) { m_masterUsernameHasBeenSet = true; m_masterUsername = std::move(value); } /** *

Not supported by Neptune.

*/ inline void SetMasterUsername(const char* value) { m_masterUsernameHasBeenSet = true; m_masterUsername.assign(value); } /** *

Not supported by Neptune.

*/ inline CreateDBClusterRequest& WithMasterUsername(const Aws::String& value) { SetMasterUsername(value); return *this;} /** *

Not supported by Neptune.

*/ inline CreateDBClusterRequest& WithMasterUsername(Aws::String&& value) { SetMasterUsername(std::move(value)); return *this;} /** *

Not supported by Neptune.

*/ inline CreateDBClusterRequest& WithMasterUsername(const char* value) { SetMasterUsername(value); return *this;} /** *

Not supported by Neptune.

*/ inline const Aws::String& GetMasterUserPassword() const{ return m_masterUserPassword; } /** *

Not supported by Neptune.

*/ inline bool MasterUserPasswordHasBeenSet() const { return m_masterUserPasswordHasBeenSet; } /** *

Not supported by Neptune.

*/ inline void SetMasterUserPassword(const Aws::String& value) { m_masterUserPasswordHasBeenSet = true; m_masterUserPassword = value; } /** *

Not supported by Neptune.

*/ inline void SetMasterUserPassword(Aws::String&& value) { m_masterUserPasswordHasBeenSet = true; m_masterUserPassword = std::move(value); } /** *

Not supported by Neptune.

*/ inline void SetMasterUserPassword(const char* value) { m_masterUserPasswordHasBeenSet = true; m_masterUserPassword.assign(value); } /** *

Not supported by Neptune.

*/ inline CreateDBClusterRequest& WithMasterUserPassword(const Aws::String& value) { SetMasterUserPassword(value); return *this;} /** *

Not supported by Neptune.

*/ inline CreateDBClusterRequest& WithMasterUserPassword(Aws::String&& value) { SetMasterUserPassword(std::move(value)); return *this;} /** *

Not supported by Neptune.

*/ inline CreateDBClusterRequest& WithMasterUserPassword(const char* value) { SetMasterUserPassword(value); return *this;} /** *

(Not supported by Neptune)

*/ inline const Aws::String& GetOptionGroupName() const{ return m_optionGroupName; } /** *

(Not supported by Neptune)

*/ inline bool OptionGroupNameHasBeenSet() const { return m_optionGroupNameHasBeenSet; } /** *

(Not supported by Neptune)

*/ inline void SetOptionGroupName(const Aws::String& value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName = value; } /** *

(Not supported by Neptune)

*/ inline void SetOptionGroupName(Aws::String&& value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName = std::move(value); } /** *

(Not supported by Neptune)

*/ inline void SetOptionGroupName(const char* value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName.assign(value); } /** *

(Not supported by Neptune)

*/ inline CreateDBClusterRequest& WithOptionGroupName(const Aws::String& value) { SetOptionGroupName(value); return *this;} /** *

(Not supported by Neptune)

*/ inline CreateDBClusterRequest& WithOptionGroupName(Aws::String&& value) { SetOptionGroupName(std::move(value)); return *this;} /** *

(Not supported by Neptune)

*/ inline CreateDBClusterRequest& WithOptionGroupName(const char* value) { SetOptionGroupName(value); return *this;} /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline const Aws::String& GetPreferredBackupWindow() const{ return m_preferredBackupWindow; } /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline bool PreferredBackupWindowHasBeenSet() const { return m_preferredBackupWindowHasBeenSet; } /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline void SetPreferredBackupWindow(const Aws::String& value) { m_preferredBackupWindowHasBeenSet = true; m_preferredBackupWindow = value; } /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline void SetPreferredBackupWindow(Aws::String&& value) { m_preferredBackupWindowHasBeenSet = true; m_preferredBackupWindow = std::move(value); } /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline void SetPreferredBackupWindow(const char* value) { m_preferredBackupWindowHasBeenSet = true; m_preferredBackupWindow.assign(value); } /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline CreateDBClusterRequest& WithPreferredBackupWindow(const Aws::String& value) { SetPreferredBackupWindow(value); return *this;} /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline CreateDBClusterRequest& WithPreferredBackupWindow(Aws::String&& value) { SetPreferredBackupWindow(std::move(value)); return *this;} /** *

The daily time range during which automated backups are created if automated * backups are enabled using the BackupRetentionPeriod parameter.

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region. To see the time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Constraints:

  • Must be in the format * hh24:mi-hh24:mi.

  • Must be in Universal Coordinated * Time (UTC).

  • Must not conflict with the preferred maintenance * window.

  • Must be at least 30 minutes.

*/ inline CreateDBClusterRequest& WithPreferredBackupWindow(const char* value) { SetPreferredBackupWindow(value); return *this;} /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline const Aws::String& GetPreferredMaintenanceWindow() const{ return m_preferredMaintenanceWindow; } /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline bool PreferredMaintenanceWindowHasBeenSet() const { return m_preferredMaintenanceWindowHasBeenSet; } /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline void SetPreferredMaintenanceWindow(const Aws::String& value) { m_preferredMaintenanceWindowHasBeenSet = true; m_preferredMaintenanceWindow = value; } /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline void SetPreferredMaintenanceWindow(Aws::String&& value) { m_preferredMaintenanceWindowHasBeenSet = true; m_preferredMaintenanceWindow = std::move(value); } /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline void SetPreferredMaintenanceWindow(const char* value) { m_preferredMaintenanceWindowHasBeenSet = true; m_preferredMaintenanceWindow.assign(value); } /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline CreateDBClusterRequest& WithPreferredMaintenanceWindow(const Aws::String& value) { SetPreferredMaintenanceWindow(value); return *this;} /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline CreateDBClusterRequest& WithPreferredMaintenanceWindow(Aws::String&& value) { SetPreferredMaintenanceWindow(std::move(value)); return *this;} /** *

The weekly time range during which system maintenance can occur, in Universal * Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

*

The default is a 30-minute window selected at random from an 8-hour block of * time for each Amazon Region, occurring on a random day of the week. To see the * time blocks available, see * Adjusting the Preferred Maintenance Window in the Amazon Neptune User * Guide.

Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.

*

Constraints: Minimum 30-minute window.

*/ inline CreateDBClusterRequest& WithPreferredMaintenanceWindow(const char* value) { SetPreferredMaintenanceWindow(value); return *this;} /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline const Aws::String& GetReplicationSourceIdentifier() const{ return m_replicationSourceIdentifier; } /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline bool ReplicationSourceIdentifierHasBeenSet() const { return m_replicationSourceIdentifierHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline void SetReplicationSourceIdentifier(const Aws::String& value) { m_replicationSourceIdentifierHasBeenSet = true; m_replicationSourceIdentifier = value; } /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline void SetReplicationSourceIdentifier(Aws::String&& value) { m_replicationSourceIdentifierHasBeenSet = true; m_replicationSourceIdentifier = std::move(value); } /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline void SetReplicationSourceIdentifier(const char* value) { m_replicationSourceIdentifierHasBeenSet = true; m_replicationSourceIdentifier.assign(value); } /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline CreateDBClusterRequest& WithReplicationSourceIdentifier(const Aws::String& value) { SetReplicationSourceIdentifier(value); return *this;} /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline CreateDBClusterRequest& WithReplicationSourceIdentifier(Aws::String&& value) { SetReplicationSourceIdentifier(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the source DB instance or DB cluster if * this DB cluster is created as a Read Replica.

*/ inline CreateDBClusterRequest& WithReplicationSourceIdentifier(const char* value) { SetReplicationSourceIdentifier(value); return *this;} /** *

The tags to assign to the new DB cluster.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

The tags to assign to the new DB cluster.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

The tags to assign to the new DB cluster.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The tags to assign to the new DB cluster.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The tags to assign to the new DB cluster.

*/ inline CreateDBClusterRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

The tags to assign to the new DB cluster.

*/ inline CreateDBClusterRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

The tags to assign to the new DB cluster.

*/ inline CreateDBClusterRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

The tags to assign to the new DB cluster.

*/ inline CreateDBClusterRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *

Specifies whether the DB cluster is encrypted.

*/ inline bool GetStorageEncrypted() const{ return m_storageEncrypted; } /** *

Specifies whether the DB cluster is encrypted.

*/ inline bool StorageEncryptedHasBeenSet() const { return m_storageEncryptedHasBeenSet; } /** *

Specifies whether the DB cluster is encrypted.

*/ inline void SetStorageEncrypted(bool value) { m_storageEncryptedHasBeenSet = true; m_storageEncrypted = value; } /** *

Specifies whether the DB cluster is encrypted.

*/ inline CreateDBClusterRequest& WithStorageEncrypted(bool value) { SetStorageEncrypted(value); return *this;} /** *

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

The Amazon KMS key identifier for an encrypted DB cluster.

The KMS key * identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you * are creating a DB cluster with the same Amazon account that owns the KMS * encryption key used to encrypt the new DB cluster, then you can use the KMS key * alias instead of the ARN for the KMS encryption key.

If an encryption key * is not specified in KmsKeyId:

  • If * ReplicationSourceIdentifier identifies an encrypted source, then * Amazon Neptune will use the encryption key used to encrypt the source. * Otherwise, Amazon Neptune will use your default encryption key.

  • *

    If the StorageEncrypted parameter is true and * ReplicationSourceIdentifier is not specified, then Amazon Neptune * will use your default encryption key.

Amazon KMS creates the * default encryption key for your Amazon account. Your Amazon account has a * different default encryption key for each Amazon Region.

If you create a * Read Replica of an encrypted DB cluster in another Amazon Region, you must set * KmsKeyId to a KMS key ID that is valid in the destination Amazon * Region. This key is used to encrypt the Read Replica in that Amazon Region.

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

This parameter is not currently supported.

*/ inline const Aws::String& GetPreSignedUrl() const{ return m_preSignedUrl; } /** *

This parameter is not currently supported.

*/ inline bool PreSignedUrlHasBeenSet() const { return m_preSignedUrlHasBeenSet; } /** *

This parameter is not currently supported.

*/ inline void SetPreSignedUrl(const Aws::String& value) { m_preSignedUrlHasBeenSet = true; m_preSignedUrl = value; } /** *

This parameter is not currently supported.

*/ inline void SetPreSignedUrl(Aws::String&& value) { m_preSignedUrlHasBeenSet = true; m_preSignedUrl = std::move(value); } /** *

This parameter is not currently supported.

*/ inline void SetPreSignedUrl(const char* value) { m_preSignedUrlHasBeenSet = true; m_preSignedUrl.assign(value); } /** *

This parameter is not currently supported.

*/ inline CreateDBClusterRequest& WithPreSignedUrl(const Aws::String& value) { SetPreSignedUrl(value); return *this;} /** *

This parameter is not currently supported.

*/ inline CreateDBClusterRequest& WithPreSignedUrl(Aws::String&& value) { SetPreSignedUrl(std::move(value)); return *this;} /** *

This parameter is not currently supported.

*/ inline CreateDBClusterRequest& WithPreSignedUrl(const char* value) { SetPreSignedUrl(value); return *this;} /** *

If set to true, enables Amazon Identity and Access Management * (IAM) authentication for the entire DB cluster (this cannot be set at an * instance level).

Default: false.

*/ inline bool GetEnableIAMDatabaseAuthentication() const{ return m_enableIAMDatabaseAuthentication; } /** *

If set to true, enables Amazon Identity and Access Management * (IAM) authentication for the entire DB cluster (this cannot be set at an * instance level).

Default: false.

*/ inline bool EnableIAMDatabaseAuthenticationHasBeenSet() const { return m_enableIAMDatabaseAuthenticationHasBeenSet; } /** *

If set to true, enables Amazon Identity and Access Management * (IAM) authentication for the entire DB cluster (this cannot be set at an * instance level).

Default: false.

*/ inline void SetEnableIAMDatabaseAuthentication(bool value) { m_enableIAMDatabaseAuthenticationHasBeenSet = true; m_enableIAMDatabaseAuthentication = value; } /** *

If set to true, enables Amazon Identity and Access Management * (IAM) authentication for the entire DB cluster (this cannot be set at an * instance level).

Default: false.

*/ inline CreateDBClusterRequest& WithEnableIAMDatabaseAuthentication(bool value) { SetEnableIAMDatabaseAuthentication(value); return *this;} /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline const Aws::Vector& GetEnableCloudwatchLogsExports() const{ return m_enableCloudwatchLogsExports; } /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline bool EnableCloudwatchLogsExportsHasBeenSet() const { return m_enableCloudwatchLogsExportsHasBeenSet; } /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline void SetEnableCloudwatchLogsExports(const Aws::Vector& value) { m_enableCloudwatchLogsExportsHasBeenSet = true; m_enableCloudwatchLogsExports = value; } /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline void SetEnableCloudwatchLogsExports(Aws::Vector&& value) { m_enableCloudwatchLogsExportsHasBeenSet = true; m_enableCloudwatchLogsExports = std::move(value); } /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline CreateDBClusterRequest& WithEnableCloudwatchLogsExports(const Aws::Vector& value) { SetEnableCloudwatchLogsExports(value); return *this;} /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline CreateDBClusterRequest& WithEnableCloudwatchLogsExports(Aws::Vector&& value) { SetEnableCloudwatchLogsExports(std::move(value)); return *this;} /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline CreateDBClusterRequest& AddEnableCloudwatchLogsExports(const Aws::String& value) { m_enableCloudwatchLogsExportsHasBeenSet = true; m_enableCloudwatchLogsExports.push_back(value); return *this; } /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline CreateDBClusterRequest& AddEnableCloudwatchLogsExports(Aws::String&& value) { m_enableCloudwatchLogsExportsHasBeenSet = true; m_enableCloudwatchLogsExports.push_back(std::move(value)); return *this; } /** *

The list of log types that need to be enabled for exporting to CloudWatch * Logs.

*/ inline CreateDBClusterRequest& AddEnableCloudwatchLogsExports(const char* value) { m_enableCloudwatchLogsExportsHasBeenSet = true; m_enableCloudwatchLogsExports.push_back(value); return *this; } /** *

A value that indicates whether the DB cluster has deletion protection * enabled. The database can't be deleted when deletion protection is enabled. By * default, deletion protection is enabled.

*/ inline bool GetDeletionProtection() const{ return m_deletionProtection; } /** *

A value that indicates whether the DB cluster has deletion protection * enabled. The database can't be deleted when deletion protection is enabled. By * default, deletion protection is enabled.

*/ inline bool DeletionProtectionHasBeenSet() const { return m_deletionProtectionHasBeenSet; } /** *

A value that indicates whether the DB cluster has deletion protection * enabled. The database can't be deleted when deletion protection is enabled. By * default, deletion protection is enabled.

*/ inline void SetDeletionProtection(bool value) { m_deletionProtectionHasBeenSet = true; m_deletionProtection = value; } /** *

A value that indicates whether the DB cluster has deletion protection * enabled. The database can't be deleted when deletion protection is enabled. By * default, deletion protection is enabled.

*/ inline CreateDBClusterRequest& WithDeletionProtection(bool value) { SetDeletionProtection(value); return *this;} inline const ServerlessV2ScalingConfiguration& GetServerlessV2ScalingConfiguration() const{ return m_serverlessV2ScalingConfiguration; } inline bool ServerlessV2ScalingConfigurationHasBeenSet() const { return m_serverlessV2ScalingConfigurationHasBeenSet; } inline void SetServerlessV2ScalingConfiguration(const ServerlessV2ScalingConfiguration& value) { m_serverlessV2ScalingConfigurationHasBeenSet = true; m_serverlessV2ScalingConfiguration = value; } inline void SetServerlessV2ScalingConfiguration(ServerlessV2ScalingConfiguration&& value) { m_serverlessV2ScalingConfigurationHasBeenSet = true; m_serverlessV2ScalingConfiguration = std::move(value); } inline CreateDBClusterRequest& WithServerlessV2ScalingConfiguration(const ServerlessV2ScalingConfiguration& value) { SetServerlessV2ScalingConfiguration(value); return *this;} inline CreateDBClusterRequest& WithServerlessV2ScalingConfiguration(ServerlessV2ScalingConfiguration&& value) { SetServerlessV2ScalingConfiguration(std::move(value)); return *this;} /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline const Aws::String& GetGlobalClusterIdentifier() const{ return m_globalClusterIdentifier; } /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline bool GlobalClusterIdentifierHasBeenSet() const { return m_globalClusterIdentifierHasBeenSet; } /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline void SetGlobalClusterIdentifier(const Aws::String& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = value; } /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline void SetGlobalClusterIdentifier(Aws::String&& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = std::move(value); } /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline void SetGlobalClusterIdentifier(const char* value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier.assign(value); } /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline CreateDBClusterRequest& WithGlobalClusterIdentifier(const Aws::String& value) { SetGlobalClusterIdentifier(value); return *this;} /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline CreateDBClusterRequest& WithGlobalClusterIdentifier(Aws::String&& value) { SetGlobalClusterIdentifier(std::move(value)); return *this;} /** *

The ID of the Neptune global database to which this new DB cluster should be * added.

*/ inline CreateDBClusterRequest& WithGlobalClusterIdentifier(const char* value) { SetGlobalClusterIdentifier(value); return *this;} /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline const Aws::String& GetSourceRegion() const{ return m_sourceRegion; } /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline bool SourceRegionHasBeenSet() const { return m_sourceRegionHasBeenSet; } /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline void SetSourceRegion(const Aws::String& value) { m_sourceRegionHasBeenSet = true; m_sourceRegion = value; } /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline void SetSourceRegion(Aws::String&& value) { m_sourceRegionHasBeenSet = true; m_sourceRegion = std::move(value); } /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline void SetSourceRegion(const char* value) { m_sourceRegionHasBeenSet = true; m_sourceRegion.assign(value); } /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline CreateDBClusterRequest& WithSourceRegion(const Aws::String& value) { SetSourceRegion(value); return *this;} /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline CreateDBClusterRequest& WithSourceRegion(Aws::String&& value) { SetSourceRegion(std::move(value)); return *this;} /** * If SourceRegion is specified, SDKs will generate pre-signed URLs and populate the pre-signed URL field. */ inline CreateDBClusterRequest& WithSourceRegion(const char* value) { SetSourceRegion(value); return *this;} private: Aws::Vector m_availabilityZones; bool m_availabilityZonesHasBeenSet = false; int m_backupRetentionPeriod; bool m_backupRetentionPeriodHasBeenSet = false; Aws::String m_characterSetName; bool m_characterSetNameHasBeenSet = false; bool m_copyTagsToSnapshot; bool m_copyTagsToSnapshotHasBeenSet = false; Aws::String m_databaseName; bool m_databaseNameHasBeenSet = false; Aws::String m_dBClusterIdentifier; bool m_dBClusterIdentifierHasBeenSet = false; Aws::String m_dBClusterParameterGroupName; bool m_dBClusterParameterGroupNameHasBeenSet = false; Aws::Vector m_vpcSecurityGroupIds; bool m_vpcSecurityGroupIdsHasBeenSet = false; Aws::String m_dBSubnetGroupName; bool m_dBSubnetGroupNameHasBeenSet = false; Aws::String m_engine; bool m_engineHasBeenSet = false; Aws::String m_engineVersion; bool m_engineVersionHasBeenSet = false; int m_port; bool m_portHasBeenSet = false; Aws::String m_masterUsername; bool m_masterUsernameHasBeenSet = false; Aws::String m_masterUserPassword; bool m_masterUserPasswordHasBeenSet = false; Aws::String m_optionGroupName; bool m_optionGroupNameHasBeenSet = false; Aws::String m_preferredBackupWindow; bool m_preferredBackupWindowHasBeenSet = false; Aws::String m_preferredMaintenanceWindow; bool m_preferredMaintenanceWindowHasBeenSet = false; Aws::String m_replicationSourceIdentifier; bool m_replicationSourceIdentifierHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; bool m_storageEncrypted; bool m_storageEncryptedHasBeenSet = false; Aws::String m_kmsKeyId; bool m_kmsKeyIdHasBeenSet = false; Aws::String m_preSignedUrl; bool m_preSignedUrlHasBeenSet = false; bool m_enableIAMDatabaseAuthentication; bool m_enableIAMDatabaseAuthenticationHasBeenSet = false; Aws::Vector m_enableCloudwatchLogsExports; bool m_enableCloudwatchLogsExportsHasBeenSet = false; bool m_deletionProtection; bool m_deletionProtectionHasBeenSet = false; ServerlessV2ScalingConfiguration m_serverlessV2ScalingConfiguration; bool m_serverlessV2ScalingConfigurationHasBeenSet = false; Aws::String m_globalClusterIdentifier; bool m_globalClusterIdentifierHasBeenSet = false; Aws::String m_sourceRegion; bool m_sourceRegionHasBeenSet = false; }; } // namespace Model } // namespace Neptune } // namespace Aws