Class: Aws::SecurityHub::Types::AwsAmazonMqBrokerEncryptionOptionsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsAmazonMqBrokerEncryptionOptionsDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Provides details about broker encryption options.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The KMS key that’s used to encrypt your data at rest.
-
#use_aws_owned_key ⇒ Boolean
Specifies that an KMS key should be used for at-rest encryption.
Instance Attribute Details
#kms_key_id ⇒ String
The KMS key that’s used to encrypt your data at rest. If not provided, Amazon MQ will use a default KMS key to encrypt your data.
1327 1328 1329 1330 1331 1332 |
# File 'lib/aws-sdk-securityhub/types.rb', line 1327 class AwsAmazonMqBrokerEncryptionOptionsDetails < Struct.new( :kms_key_id, :use_aws_owned_key) SENSITIVE = [] include Aws::Structure end |
#use_aws_owned_key ⇒ Boolean
Specifies that an KMS key should be used for at-rest encryption. Set to ‘true` by default if no value is provided (for example, for RabbitMQ brokers).
1327 1328 1329 1330 1331 1332 |
# File 'lib/aws-sdk-securityhub/types.rb', line 1327 class AwsAmazonMqBrokerEncryptionOptionsDetails < Struct.new( :kms_key_id, :use_aws_owned_key) SENSITIVE = [] include Aws::Structure end |