Class: Aws::Neptune::Types::CreateDBInstanceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::CreateDBInstanceMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:tde_credential_password]
Instance Attribute Summary collapse
-
#allocated_storage ⇒ Integer
Not supported by Neptune.
-
#auto_minor_version_upgrade ⇒ Boolean
Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window.
-
#availability_zone ⇒ String
The EC2 Availability Zone that the DB instance is created in.
-
#backup_retention_period ⇒ Integer
The number of days for which automated backups are retained.
-
#character_set_name ⇒ String
*(Not supported by Neptune)*.
-
#copy_tags_to_snapshot ⇒ Boolean
True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false.
-
#db_cluster_identifier ⇒ String
The identifier of the DB cluster that the instance will belong to.
-
#db_instance_class ⇒ String
The compute and memory capacity of the DB instance, for example, ‘db.m4.large`.
-
#db_instance_identifier ⇒ String
The DB instance identifier.
-
#db_name ⇒ String
Not supported.
-
#db_parameter_group_name ⇒ String
The name of the DB parameter group to associate with this DB instance.
-
#db_security_groups ⇒ Array<String>
A list of DB security groups to associate with this DB instance.
-
#db_subnet_group_name ⇒ String
A DB subnet group to associate with this DB instance.
-
#deletion_protection ⇒ Boolean
A value that indicates whether the DB instance has deletion protection enabled.
-
#domain ⇒ String
Specify the Active Directory Domain to create the instance in.
-
#domain_iam_role_name ⇒ String
Specify the name of the IAM role to be used when making API calls to the Directory Service.
-
#enable_cloudwatch_logs_exports ⇒ Array<String>
The list of log types that need to be enabled for exporting to CloudWatch Logs.
-
#enable_iam_database_authentication ⇒ Boolean
Not supported by Neptune (ignored).
-
#enable_performance_insights ⇒ Boolean
*(Not supported by Neptune)*.
-
#engine ⇒ String
The name of the database engine to be used for this instance.
-
#engine_version ⇒ String
The version number of the database engine to use.
-
#iops ⇒ Integer
The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB instance.
-
#kms_key_id ⇒ String
The Amazon KMS key identifier for an encrypted DB instance.
-
#license_model ⇒ String
License model information for this DB instance.
-
#master_user_password ⇒ String
Not supported by Neptune.
-
#master_username ⇒ String
Not supported by Neptune.
-
#monitoring_interval ⇒ Integer
The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance.
-
#monitoring_role_arn ⇒ String
The ARN for the IAM role that permits Neptune to send enhanced monitoring metrics to Amazon CloudWatch Logs.
-
#multi_az ⇒ Boolean
Specifies if the DB instance is a Multi-AZ deployment.
-
#option_group_name ⇒ String
*(Not supported by Neptune)*.
-
#performance_insights_kms_key_id ⇒ String
*(Not supported by Neptune)*.
-
#port ⇒ Integer
The port number on which the database accepts connections.
-
#preferred_backup_window ⇒ String
The daily time range during which automated backups are created.
-
#preferred_maintenance_window ⇒ String
The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC).
-
#promotion_tier ⇒ Integer
A value that specifies the order in which an Read Replica is promoted to the primary instance after a failure of the existing primary instance.
-
#publicly_accessible ⇒ Boolean
This flag should no longer be used.
-
#storage_encrypted ⇒ Boolean
Specifies whether the DB instance is encrypted.
-
#storage_type ⇒ String
Specifies the storage type to be associated with the DB instance.
-
#tags ⇒ Array<Types::Tag>
The tags to assign to the new instance.
-
#tde_credential_arn ⇒ String
The ARN from the key store with which to associate the instance for TDE encryption.
-
#tde_credential_password ⇒ String
The password for the given ARN from the key store in order to access the device.
-
#timezone ⇒ String
The time zone of the DB instance.
-
#vpc_security_group_ids ⇒ Array<String>
A list of EC2 VPC security groups to associate with this DB instance.
Instance Attribute Details
#allocated_storage ⇒ Integer
Not supported by Neptune.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#auto_minor_version_upgrade ⇒ Boolean
Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window.
Default: ‘true`
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#availability_zone ⇒ String
The EC2 Availability Zone that the DB instance is created in
Default: A random, system-chosen Availability Zone in the endpoint’s Amazon Region.
Example: ‘us-east-1d`
Constraint: The AvailabilityZone parameter can’t be specified if the MultiAZ parameter is set to ‘true`. The specified Availability Zone must be in the same Amazon Region as the current endpoint.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#backup_retention_period ⇒ Integer
The number of days for which automated backups are retained.
Not applicable. The retention period for automated backups is managed by the DB cluster. For more information, see CreateDBCluster.
Default: 1
Constraints:
-
Must be a value from 0 to 35
-
Cannot be set to 0 if the DB instance is a source to Read Replicas
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#character_set_name ⇒ String
*(Not supported by Neptune)*
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#copy_tags_to_snapshot ⇒ Boolean
True to copy all tags from the DB instance to snapshots of the DB instance, and otherwise false. The default is false.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#db_cluster_identifier ⇒ String
The identifier of the DB cluster that the instance will belong to.
For information on creating a DB cluster, see CreateDBCluster.
Type: String
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#db_instance_class ⇒ String
The compute and memory capacity of the DB instance, for example, ‘db.m4.large`. Not all DB instance classes are available in all Amazon Regions.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#db_instance_identifier ⇒ String
The DB instance 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: ‘mydbinstance`
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#db_name ⇒ String
Not supported.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#db_parameter_group_name ⇒ String
The name of the DB parameter group to associate with this DB instance. If this argument is omitted, the default DBParameterGroup for the specified engine is used.
Constraints:
-
Must be 1 to 255 letters, numbers, or hyphens.
-
First character must be a letter
-
Cannot end with a hyphen or contain two consecutive hyphens
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#db_security_groups ⇒ Array<String>
A list of DB security groups to associate with this DB instance.
Default: The default DB security group for the database engine.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#db_subnet_group_name ⇒ String
A DB subnet group to associate with this DB instance.
If there is no DB subnet group, then it is a non-VPC DB instance.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#deletion_protection ⇒ Boolean
A value that indicates whether the DB instance has deletion protection enabled. The database can’t be deleted when deletion protection is enabled. By default, deletion protection is disabled. See [Deleting a DB Instance].
DB instances in a DB cluster can be deleted even when deletion protection is enabled in their parent DB cluster.
[1]: docs.aws.amazon.com/neptune/latest/userguide/manage-console-instances-delete.html
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#domain ⇒ String
Specify the Active Directory Domain to create the instance in.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#domain_iam_role_name ⇒ String
Specify the name of the IAM role to be used when making API calls to the Directory Service.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#enable_cloudwatch_logs_exports ⇒ Array<String>
The list of log types that need to be enabled for exporting to CloudWatch Logs.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#enable_iam_database_authentication ⇒ Boolean
Not supported by Neptune (ignored).
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#enable_performance_insights ⇒ Boolean
*(Not supported by Neptune)*
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#engine ⇒ String
The name of the database engine to be used for this instance.
Valid Values: ‘neptune`
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#engine_version ⇒ String
The version number of the database engine to use. Currently, setting this parameter has no effect.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#iops ⇒ Integer
The amount of Provisioned IOPS (input/output operations per second) to be initially allocated for the DB instance.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#kms_key_id ⇒ String
The Amazon KMS key identifier for an encrypted DB instance.
The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a DB instance with the same Amazon account that owns the KMS encryption key used to encrypt the new DB instance, then you can use the KMS key alias instead of the ARN for the KM encryption key.
Not applicable. The KMS key identifier is managed by the DB cluster. For more information, see CreateDBCluster.
If the ‘StorageEncrypted` parameter is true, and you do not specify a value for the `KmsKeyId` parameter, 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.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#license_model ⇒ String
License model information for this DB instance.
Valid values: ‘license-included` | `bring-your-own-license` | `general-public-license`
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#master_user_password ⇒ String
Not supported by Neptune.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#master_username ⇒ String
Not supported by Neptune.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#monitoring_interval ⇒ Integer
The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0.
If ‘MonitoringRoleArn` is specified, then you must also set `MonitoringInterval` to a value other than 0.
Valid Values: ‘0, 1, 5, 10, 15, 30, 60`
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#monitoring_role_arn ⇒ String
The ARN for the IAM role that permits Neptune to send enhanced monitoring metrics to Amazon CloudWatch Logs. For example, ‘arn:aws:iam:123456789012:role/emaccess`.
If ‘MonitoringInterval` is set to a value other than 0, then you must supply a `MonitoringRoleArn` value.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#multi_az ⇒ Boolean
Specifies if the DB instance is a Multi-AZ deployment. You can’t set the AvailabilityZone parameter if the MultiAZ parameter is set to true.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#option_group_name ⇒ String
*(Not supported by Neptune)*
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#performance_insights_kms_key_id ⇒ String
*(Not supported by Neptune)*
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#port ⇒ Integer
The port number on which the database accepts connections.
Not applicable. The port is managed by the DB cluster. For more information, see CreateDBCluster.
Default: ‘8182`
Type: Integer
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#preferred_backup_window ⇒ String
The daily time range during which automated backups are created.
Not applicable. The daily time range for creating automated backups is managed by the DB cluster. For more information, see CreateDBCluster.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#preferred_maintenance_window ⇒ String
The time range each week 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.
Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
Constraints: Minimum 30-minute window.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#promotion_tier ⇒ Integer
A value that specifies the order in which an Read Replica is promoted to the primary instance after a failure of the existing primary instance.
Default: 1
Valid Values: 0 - 15
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#publicly_accessible ⇒ Boolean
This flag should no longer be used.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#storage_encrypted ⇒ Boolean
Specifies whether the DB instance is encrypted.
Not applicable. The encryption for DB instances is managed by the DB cluster. For more information, see CreateDBCluster.
Default: false
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#storage_type ⇒ String
Specifies the storage type to be associated with the DB instance.
Not applicable. Storage is managed by the DB Cluster.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to assign to the new instance.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#tde_credential_arn ⇒ String
The ARN from the key store with which to associate the instance for TDE encryption.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#tde_credential_password ⇒ String
The password for the given ARN from the key store in order to access the device.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#timezone ⇒ String
The time zone of the DB instance.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |
#vpc_security_group_ids ⇒ Array<String>
A list of EC2 VPC security groups to associate with this DB instance.
Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. For more information, see CreateDBCluster.
Default: The default EC2 VPC security group for the DB subnet group’s VPC.
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 |
# File 'lib/aws-sdk-neptune/types.rb', line 1421 class CreateDBInstanceMessage < Struct.new( :db_name, :db_instance_identifier, :allocated_storage, :db_instance_class, :engine, :master_username, :master_user_password, :db_security_groups, :vpc_security_group_ids, :availability_zone, :db_subnet_group_name, :preferred_maintenance_window, :db_parameter_group_name, :backup_retention_period, :preferred_backup_window, :port, :multi_az, :engine_version, :auto_minor_version_upgrade, :license_model, :iops, :option_group_name, :character_set_name, :publicly_accessible, :tags, :db_cluster_identifier, :storage_type, :tde_credential_arn, :tde_credential_password, :storage_encrypted, :kms_key_id, :domain, :copy_tags_to_snapshot, :monitoring_interval, :monitoring_role_arn, :domain_iam_role_name, :promotion_tier, :timezone, :enable_iam_database_authentication, :enable_performance_insights, :performance_insights_kms_key_id, :enable_cloudwatch_logs_exports, :deletion_protection) SENSITIVE = [:tde_credential_password] include Aws::Structure end |