Class: Aws::Synthetics::Types::S3EncryptionConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-synthetics/types.rb

Overview

A structure that contains the configuration of encryption-at-rest settings for canary artifacts that the canary uploads to Amazon S3.

For more information, see [Encrypting canary artifacts]

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_artifact_encryption.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_modeString

The encryption method to use for artifacts created by this canary. Specify ‘SSE_S3` to use server-side encryption (SSE) with an Amazon S3-managed key. Specify `SSE-KMS` to use server-side encryption with a customer-managed KMS key.

If you omit this parameter, an Amazon Web Services-managed KMS key is used.

Returns:

  • (String)


1537
1538
1539
1540
1541
1542
# File 'lib/aws-sdk-synthetics/types.rb', line 1537

class S3EncryptionConfig < Struct.new(
  :encryption_mode,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_arnString

The ARN of the customer-managed KMS key to use, if you specify ‘SSE-KMS` for `EncryptionMode`

Returns:

  • (String)


1537
1538
1539
1540
1541
1542
# File 'lib/aws-sdk-synthetics/types.rb', line 1537

class S3EncryptionConfig < Struct.new(
  :encryption_mode,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end