Class: Aws::AccessAnalyzer::Types::RdsDbSnapshotConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::RdsDbSnapshotConfiguration
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
The proposed access control configuration for an Amazon RDS DB
snapshot. You can propose a configuration for a new Amazon RDS DB
snapshot or an Amazon RDS DB snapshot that you own by specifying the
RdsDbSnapshotAttributeValue
and optional KMS encryption key. For
more information, see ModifyDBSnapshotAttribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,Types::RdsDbSnapshotAttributeValue>
The names and values of manual DB snapshot attributes.
-
#kms_key_id ⇒ String
The KMS key identifier for an encrypted Amazon RDS DB snapshot.
Instance Attribute Details
#attributes ⇒ Hash<String,Types::RdsDbSnapshotAttributeValue>
The names and values of manual DB snapshot attributes. Manual DB
snapshot attributes are used to authorize other Amazon Web Services
accounts to restore a manual DB snapshot. The only valid value for
attributeName
for the attribute map is restore.
3389 3390 3391 3392 3393 3394 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3389 class RdsDbSnapshotConfiguration < Struct.new( :attributes, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
The KMS key identifier for an encrypted Amazon RDS DB snapshot. The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
If the configuration is for an existing Amazon RDS DB snapshot and you do not specify the
kmsKeyId
, or you specify an empty string, then the access preview uses the existingkmsKeyId
of the snapshot.If the access preview is for a new resource and you do not specify the specify the
kmsKeyId
, then the access preview considers the snapshot as unencrypted.
3389 3390 3391 3392 3393 3394 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3389 class RdsDbSnapshotConfiguration < Struct.new( :attributes, :kms_key_id) SENSITIVE = [] include Aws::Structure end |