Class: Aws::SecurityHub::Types::AwsS3BucketServerSideEncryptionByDefault
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketServerSideEncryptionByDefault
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsS3BucketServerSideEncryptionByDefault data as a hash:
{
sse_algorithm: "NonEmptyString",
kms_master_key_id: "NonEmptyString",
}
Specifies the default server-side encryption to apply to new objects in the bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_master_key_id ⇒ String
AWS KMS customer master key (CMK) ID to use for the default encryption.
-
#sse_algorithm ⇒ String
Server-side encryption algorithm to use for the default encryption.
Instance Attribute Details
#kms_master_key_id ⇒ String
AWS KMS customer master key (CMK) ID to use for the default encryption.
9903 9904 9905 9906 9907 9908 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9903 class AwsS3BucketServerSideEncryptionByDefault < Struct.new( :sse_algorithm, :kms_master_key_id) SENSITIVE = [] include Aws::Structure end |
#sse_algorithm ⇒ String
Server-side encryption algorithm to use for the default encryption.
9903 9904 9905 9906 9907 9908 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 9903 class AwsS3BucketServerSideEncryptionByDefault < Struct.new( :sse_algorithm, :kms_master_key_id) SENSITIVE = [] include Aws::Structure end |