You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AccessAnalyzer::Types::UpdateArchiveRuleRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateArchiveRuleRequest as input to an Aws::Client method, you can use a vanilla 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.

Instance Attribute Summary collapse

Instance Attribute Details

#analyzer_nameString

The name of the analyzer to update the archive rules for.

Returns:

  • (String)

    The name of the analyzer to update the archive rules for.

#client_tokenString

A client token.

Returns:

  • (String)

    A client token.

#filterHash<String,Types::Criterion>

A filter to match for the rules to update. Only rules that match the filter are updated.

Returns:

  • (Hash<String,Types::Criterion>)

    A filter to match for the rules to update.

#rule_nameString

The name of the rule to update.

Returns:

  • (String)

    The name of the rule to update.