Class: Aws::Macie2::Types::JobScopeTerm
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie2::Types::JobScopeTerm
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-macie2/types.rb
Overview
Specifies a property- or tag-based condition that defines criteria for including or excluding S3 objects from a classification job. A JobScopeTerm object can contain only one simpleScopeTerm object or one tagScopeTerm object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#simple_scope_term ⇒ Types::SimpleScopeTerm
Specifies a property-based condition that determines whether an S3 object is included or excluded from a classification job.
-
#tag_scope_term ⇒ Types::TagScopeTerm
Specifies a tag-based condition that determines whether an S3 object is included or excluded from a classification job.
Instance Attribute Details
#simple_scope_term ⇒ Types::SimpleScopeTerm
Specifies a property-based condition that determines whether an S3 object is included or excluded from a classification job.
3863 3864 3865 3866 3867 3868 |
# File 'lib/aws-sdk-macie2/types.rb', line 3863 class JobScopeTerm < Struct.new( :simple_scope_term, :tag_scope_term) SENSITIVE = [] include Aws::Structure end |
#tag_scope_term ⇒ Types::TagScopeTerm
Specifies a tag-based condition that determines whether an S3 object is included or excluded from a classification job.
3863 3864 3865 3866 3867 3868 |
# File 'lib/aws-sdk-macie2/types.rb', line 3863 class JobScopeTerm < Struct.new( :simple_scope_term, :tag_scope_term) SENSITIVE = [] include Aws::Structure end |