Class: Aws::SecurityHub::Types::AwsS3BucketServerSideEncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketServerSideEncryptionConfiguration
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsS3BucketServerSideEncryptionConfiguration data as a hash:
{
rules: [
{
apply_server_side_encryption_by_default: {
sse_algorithm: "NonEmptyString",
kms_master_key_id: "NonEmptyString",
},
},
],
}
The encryption configuration for the S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rules ⇒ Array<Types::AwsS3BucketServerSideEncryptionRule>
The encryption rules that are applied to the S3 bucket.
Instance Attribute Details
#rules ⇒ Array<Types::AwsS3BucketServerSideEncryptionRule>
The encryption rules that are applied to the S3 bucket.
18940 18941 18942 18943 18944 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18940 class AwsS3BucketServerSideEncryptionConfiguration < Struct.new( :rules) SENSITIVE = [] include Aws::Structure end |