Class: Aws::Macie2::Types::S3BucketCriteriaForJob
- Inherits:
-
Struct
- Object
- Struct
- Aws::Macie2::Types::S3BucketCriteriaForJob
- Defined in:
- gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb
Overview
When making an API call, you may pass S3BucketCriteriaForJob data as a hash:
{
excludes: {
and: [
{
simple_criterion: {
comparator: "EQ", # accepts EQ, GT, GTE, LT, LTE, NE, CONTAINS, STARTS_WITH
key: "ACCOUNT_ID", # accepts ACCOUNT_ID, S3_BUCKET_NAME, S3_BUCKET_EFFECTIVE_PERMISSION, S3_BUCKET_SHARED_ACCESS
values: ["__string"],
},
tag_criterion: {
comparator: "EQ", # accepts EQ, GT, GTE, LT, LTE, NE, CONTAINS, STARTS_WITH
tag_values: [
{
key: "__string",
value: "__string",
},
],
},
},
],
},
includes: {
and: [
{
simple_criterion: {
comparator: "EQ", # accepts EQ, GT, GTE, LT, LTE, NE, CONTAINS, STARTS_WITH
key: "ACCOUNT_ID", # accepts ACCOUNT_ID, S3_BUCKET_NAME, S3_BUCKET_EFFECTIVE_PERMISSION, S3_BUCKET_SHARED_ACCESS
values: ["__string"],
},
tag_criterion: {
comparator: "EQ", # accepts EQ, GT, GTE, LT, LTE, NE, CONTAINS, STARTS_WITH
tag_values: [
{
key: "__string",
value: "__string",
},
],
},
},
],
},
}
Specifies property- and tag-based conditions that define criteria for including or excluding S3 buckets from a classification job. Exclude conditions take precedence over include conditions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#excludes ⇒ Types::CriteriaBlockForJob
Specifies one or more property- and tag-based conditions that define criteria for including or excluding S3 buckets from a classification job.
-
#includes ⇒ Types::CriteriaBlockForJob
Specifies one or more property- and tag-based conditions that define criteria for including or excluding S3 buckets from a classification job.
Instance Attribute Details
#excludes ⇒ Types::CriteriaBlockForJob
Specifies one or more property- and tag-based conditions that define criteria for including or excluding S3 buckets from a classification job.
4999 5000 5001 5002 5003 5004 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 4999 class S3BucketCriteriaForJob < Struct.new( :excludes, :includes) SENSITIVE = [] include Aws::Structure end |
#includes ⇒ Types::CriteriaBlockForJob
Specifies one or more property- and tag-based conditions that define criteria for including or excluding S3 buckets from a classification job.
4999 5000 5001 5002 5003 5004 |
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 4999 class S3BucketCriteriaForJob < Struct.new( :excludes, :includes) SENSITIVE = [] include Aws::Structure end |