Class: Aws::AccessAnalyzer::Types::UpdateArchiveRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::UpdateArchiveRuleRequest
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Note:
When making an API call, you may pass UpdateArchiveRuleRequest data as a hash:
{
analyzer_name: "Name", # required
client_token: "String",
filter: { # required
"String" => {
contains: ["String"],
eq: ["String"],
exists: false,
neq: ["String"],
},
},
rule_name: "Name", # required
}
Updates the specified archive rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analyzer_name ⇒ String
The name of the analyzer to update the archive rules for.
-
#client_token ⇒ String
A client token.
-
#filter ⇒ Hash<String,Types::Criterion>
A filter to match for the rules to update.
-
#rule_name ⇒ String
The name of the rule to update.
Instance Attribute Details
#analyzer_name ⇒ String
The name of the analyzer to update the archive rules for.
3347 3348 3349 3350 3351 3352 3353 3354 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3347 class UpdateArchiveRuleRequest < Struct.new( :analyzer_name, :client_token, :filter, :rule_name) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A client token.
A suitable default value is auto-generated. You should normally not need to pass this option.
3347 3348 3349 3350 3351 3352 3353 3354 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3347 class UpdateArchiveRuleRequest < Struct.new( :analyzer_name, :client_token, :filter, :rule_name) SENSITIVE = [] include Aws::Structure end |
#filter ⇒ Hash<String,Types::Criterion>
A filter to match for the rules to update. Only rules that match the filter are updated.
3347 3348 3349 3350 3351 3352 3353 3354 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3347 class UpdateArchiveRuleRequest < Struct.new( :analyzer_name, :client_token, :filter, :rule_name) SENSITIVE = [] include Aws::Structure end |
#rule_name ⇒ String
The name of the rule to update.
3347 3348 3349 3350 3351 3352 3353 3354 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3347 class UpdateArchiveRuleRequest < Struct.new( :analyzer_name, :client_token, :filter, :rule_name) SENSITIVE = [] include Aws::Structure end |