Class: Aws::NetworkFirewall::Types::EncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::EncryptionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see [Encryption at rest with Amazon Web Services Key Managment Service] in the *Network Firewall Developer Guide*.
[1]: docs.aws.amazon.com/kms/latest/developerguide/kms-encryption-at-rest.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_id ⇒ String
The ID of the Amazon Web Services Key Management Service (KMS) customer managed key.
-
#type ⇒ String
The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources.
Instance Attribute Details
#key_id ⇒ String
The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you’re using a key that’s managed by another account. If you’re using a key managed by another account, then specify the key ARN. For more information, see [Key ID] in the *Amazon Web Services KMS Developer Guide*.
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id
1758 1759 1760 1761 1762 1763 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 1758 class EncryptionConfiguration < Struct.new( :key_id, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources.
1758 1759 1760 1761 1762 1763 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 1758 class EncryptionConfiguration < Struct.new( :key_id, :type) SENSITIVE = [] include Aws::Structure end |