Class: Aws::AccessAnalyzer::Types::RdsDbClusterSnapshotConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::RdsDbClusterSnapshotConfiguration
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
The proposed access control configuration for an Amazon RDS DB cluster
snapshot. You can propose a configuration for a new Amazon RDS DB
cluster snapshot or an Amazon RDS DB cluster snapshot that you own by
specifying the RdsDbClusterSnapshotAttributeValue and optional KMS
encryption key. For more information, see
ModifyDBClusterSnapshotAttribute.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,Types::RdsDbClusterSnapshotAttributeValue>
The names and values of manual DB cluster snapshot attributes.
-
#kms_key_id ⇒ String
The KMS key identifier for an encrypted Amazon RDS DB cluster snapshot.
Instance Attribute Details
#attributes ⇒ Hash<String,Types::RdsDbClusterSnapshotAttributeValue>
The names and values of manual DB cluster snapshot attributes.
Manual DB cluster snapshot attributes are used to authorize other
Amazon Web Services accounts to restore a manual DB cluster
snapshot. The only valid value for AttributeName for the attribute
map is restore
3743 3744 3745 3746 3747 3748 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3743 class RdsDbClusterSnapshotConfiguration < 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 cluster 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 cluster snapshot and you do not specify the
kmsKeyId, or you specify an empty string, then the access preview uses the existingkmsKeyIdof 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.
3743 3744 3745 3746 3747 3748 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3743 class RdsDbClusterSnapshotConfiguration < Struct.new( :attributes, :kms_key_id) SENSITIVE = [] include Aws::Structure end |