Class: Aws::Macie2::Types::ClassificationExportConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie2::Types::ClassificationExportConfiguration
- Defined in:
- gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb
Overview
Note:
When making an API call, you may pass ClassificationExportConfiguration data as a hash:
{
s3_destination: {
bucket_name: "__string", # required
key_prefix: "__string",
kms_key_arn: "__string", # required
},
}
Specifies where to store data classification results, and the encryption settings to use when storing results in that location. Currently, you can store classification results only in an S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_destination ⇒ Types::S3Destination
Specifies an S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.
Instance Attribute Details
#s3_destination ⇒ Types::S3Destination
Specifies an S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.
892 893 894 895 896 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 892 class ClassificationExportConfiguration < Struct.new( :s3_destination) SENSITIVE = [] include Aws::Structure end |