Class: Aws::Macie::Types::S3ResourceClassification
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie::Types::S3ResourceClassification
- Defined in:
- gems/aws-sdk-macie/lib/aws-sdk-macie/types.rb
Overview
When making an API call, you may pass S3ResourceClassification data as a hash:
{
bucket_name: "BucketName", # required
prefix: "Prefix",
classification_type: { # required
one_time: "FULL", # required, accepts FULL, NONE
continuous: "FULL", # required, accepts FULL
},
}
The S3 resources that you want to associate with Amazon Macie Classic for monitoring and data classification. This data type is used as a request parameter in the AssociateS3Resources action and a response parameter in the ListS3Resources action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of the S3 bucket that you want to associate with Amazon Macie Classic.
-
#classification_type ⇒ Types::ClassificationType
The classification type that you want to specify for the resource associated with Amazon Macie Classic.
-
#prefix ⇒ String
The prefix of the S3 bucket that you want to associate with Amazon Macie Classic.
Instance Attribute Details
#bucket_name ⇒ String
The name of the S3 bucket that you want to associate with Amazon Macie Classic.
511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-macie/lib/aws-sdk-macie/types.rb', line 511 class S3ResourceClassification < Struct.new( :bucket_name, :prefix, :classification_type) SENSITIVE = [] include Aws::Structure end |
#classification_type ⇒ Types::ClassificationType
The classification type that you want to specify for the resource associated with Amazon Macie Classic.
511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-macie/lib/aws-sdk-macie/types.rb', line 511 class S3ResourceClassification < Struct.new( :bucket_name, :prefix, :classification_type) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
The prefix of the S3 bucket that you want to associate with Amazon Macie Classic.
511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-macie/lib/aws-sdk-macie/types.rb', line 511 class S3ResourceClassification < Struct.new( :bucket_name, :prefix, :classification_type) SENSITIVE = [] include Aws::Structure end |