Class: Aws::SecurityHub::Types::AwsRdsDbSnapshotDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsRdsDbSnapshotDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
When making an API call, you may pass AwsRdsDbSnapshotDetails data as a hash:
{
db_snapshot_identifier: "NonEmptyString",
db_instance_identifier: "NonEmptyString",
snapshot_create_time: "NonEmptyString",
engine: "NonEmptyString",
allocated_storage: 1,
status: "NonEmptyString",
port: 1,
availability_zone: "NonEmptyString",
vpc_id: "NonEmptyString",
instance_create_time: "NonEmptyString",
master_username: "NonEmptyString",
engine_version: "NonEmptyString",
license_model: "NonEmptyString",
snapshot_type: "NonEmptyString",
iops: 1,
option_group_name: "NonEmptyString",
percent_progress: 1,
source_region: "NonEmptyString",
source_db_snapshot_identifier: "NonEmptyString",
storage_type: "NonEmptyString",
tde_credential_arn: "NonEmptyString",
encrypted: false,
kms_key_id: "NonEmptyString",
timezone: "NonEmptyString",
iam_database_authentication_enabled: false,
processor_features: [
{
name: "NonEmptyString",
value: "NonEmptyString",
},
],
dbi_resource_id: "NonEmptyString",
}
Provides details about an Amazon RDS DB cluster snapshot.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allocated_storage ⇒ Integer
The amount of storage (in gigabytes) to be initially allocated for the database instance.
-
#availability_zone ⇒ String
Specifies the name of the Availability Zone in which the DB instance was located at the time of the DB snapshot.
-
#db_instance_identifier ⇒ String
A name for the DB instance.
-
#db_snapshot_identifier ⇒ String
The name or ARN of the DB snapshot that is used to restore the DB instance.
-
#dbi_resource_id ⇒ String
The identifier for the source DB instance.
-
#encrypted ⇒ Boolean
Whether the DB snapshot is encrypted.
-
#engine ⇒ String
The name of the database engine to use for this DB instance.
-
#engine_version ⇒ String
The version of the database engine.
-
#iam_database_authentication_enabled ⇒ Boolean
Whether mapping of IAM accounts to database accounts is enabled.
-
#instance_create_time ⇒ String
Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken, was created.
-
#iops ⇒ Integer
The provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
-
#kms_key_id ⇒ String
If
Encrypted
istrue
, the KMS key identifier for the encrypted DB snapshot. -
#license_model ⇒ String
License model information for the restored DB instance.
-
#master_username ⇒ String
The master user name for the DB snapshot.
-
#option_group_name ⇒ String
The option group name for the DB snapshot.
-
#percent_progress ⇒ Integer
The percentage of the estimated data that has been transferred.
-
#port ⇒ Integer
The port that the database engine was listening on at the time of the snapshot.
-
#processor_features ⇒ Array<Types::AwsRdsDbProcessorFeature>
The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.
-
#snapshot_create_time ⇒ String
When the snapshot was taken in Coordinated Universal Time (UTC).
-
#snapshot_type ⇒ String
The type of the DB snapshot.
-
#source_db_snapshot_identifier ⇒ String
The DB snapshot ARN that the DB snapshot was copied from.
-
#source_region ⇒ String
The Amazon Web Services Region that the DB snapshot was created in or copied from.
-
#status ⇒ String
The status of this DB snapshot.
-
#storage_type ⇒ String
The storage type associated with the DB snapshot.
-
#tde_credential_arn ⇒ String
The ARN from the key store with which to associate the instance for TDE encryption.
-
#timezone ⇒ String
The time zone of the DB snapshot.
-
#vpc_id ⇒ String
The VPC ID associated with the DB snapshot.
Instance Attribute Details
#allocated_storage ⇒ Integer
The amount of storage (in gigabytes) to be initially allocated for the database instance.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#availability_zone ⇒ String
Specifies the name of the Availability Zone in which the DB instance was located at the time of the DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#db_instance_identifier ⇒ String
A name for the DB instance.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#db_snapshot_identifier ⇒ String
The name or ARN of the DB snapshot that is used to restore the DB instance.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#dbi_resource_id ⇒ String
The identifier for the source DB instance.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#encrypted ⇒ Boolean
Whether the DB snapshot is encrypted.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#engine ⇒ String
The name of the database engine to use for this DB instance.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#engine_version ⇒ String
The version of the database engine.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#iam_database_authentication_enabled ⇒ Boolean
Whether mapping of IAM accounts to database accounts is enabled.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#instance_create_time ⇒ String
Specifies the time in Coordinated Universal Time (UTC) when the DB instance, from which the snapshot was taken, was created.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#iops ⇒ Integer
The provisioned IOPS (I/O operations per second) value of the DB instance at the time of the snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
If Encrypted
is true
, the KMS key identifier for the encrypted
DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#license_model ⇒ String
License model information for the restored DB instance.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#master_username ⇒ String
The master user name for the DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#option_group_name ⇒ String
The option group name for the DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#percent_progress ⇒ Integer
The percentage of the estimated data that has been transferred.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port that the database engine was listening on at the time of the snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#processor_features ⇒ Array<Types::AwsRdsDbProcessorFeature>
The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#snapshot_create_time ⇒ String
When the snapshot was taken in Coordinated Universal Time (UTC).
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#snapshot_type ⇒ String
The type of the DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#source_db_snapshot_identifier ⇒ String
The DB snapshot ARN that the DB snapshot was copied from.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#source_region ⇒ String
The Amazon Web Services Region that the DB snapshot was created in or copied from.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of this DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#storage_type ⇒ String
The storage type associated with the DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#tde_credential_arn ⇒ String
The ARN from the key store with which to associate the instance for TDE encryption.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#timezone ⇒ String
The time zone of the DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The VPC ID associated with the DB snapshot.
16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 16527 class AwsRdsDbSnapshotDetails < Struct.new( :db_snapshot_identifier, :db_instance_identifier, :snapshot_create_time, :engine, :allocated_storage, :status, :port, :availability_zone, :vpc_id, :instance_create_time, :master_username, :engine_version, :license_model, :snapshot_type, :iops, :option_group_name, :percent_progress, :source_region, :source_db_snapshot_identifier, :storage_type, :tde_credential_arn, :encrypted, :kms_key_id, :timezone, :iam_database_authentication_enabled, :processor_features, :dbi_resource_id) SENSITIVE = [] include Aws::Structure end |