Class: Aws::Macie::Types::ClassificationType
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie::Types::ClassificationType
- Defined in:
- gems/aws-sdk-macie/lib/aws-sdk-macie/types.rb
Overview
Note:
When making an API call, you may pass ClassificationType data as a hash:
{
one_time: "FULL", # required, accepts FULL, NONE
continuous: "FULL", # required, accepts FULL
}
The classification type that Amazon Macie Classic applies to the associated S3 resources.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#continuous ⇒ String
A continuous classification of the objects that are added to a specified S3 bucket.
-
#one_time ⇒ String
A one-time classification of all of the existing objects in a specified S3 bucket.
Instance Attribute Details
#continuous ⇒ String
A continuous classification of the objects that are added to a specified S3 bucket. Amazon Macie Classic begins performing continuous classification after a bucket is successfully associated with Amazon Macie Classic.
126 127 128 129 130 131 |
# File 'gems/aws-sdk-macie/lib/aws-sdk-macie/types.rb', line 126 class ClassificationType < Struct.new( :one_time, :continuous) SENSITIVE = [] include Aws::Structure end |
#one_time ⇒ String
A one-time classification of all of the existing objects in a specified S3 bucket.
126 127 128 129 130 131 |
# File 'gems/aws-sdk-macie/lib/aws-sdk-macie/types.rb', line 126 class ClassificationType < Struct.new( :one_time, :continuous) SENSITIVE = [] include Aws::Structure end |