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

Class: Aws::ConfigService::Types::PutRemediationExceptionsRequest

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

Overview

Note:

When passing PutRemediationExceptionsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  config_rule_name: "ConfigRuleName", # required
  resource_keys: [ # required
    {
      resource_type: "StringWithCharLimit256",
      resource_id: "StringWithCharLimit1024",
    },
  ],
  message: "StringWithCharLimit1024",
  expiration_time: Time.now,
}

Instance Attribute Summary collapse

Instance Attribute Details

#config_rule_nameString

The name of the AWS Config rule for which you want to create remediation exception.

Returns:

  • (String)

    The name of the AWS Config rule for which you want to create remediation exception.

#expiration_timeTime

The exception is automatically deleted after the expiration date.

Returns:

  • (Time)

    The exception is automatically deleted after the expiration date.

#messageString

The message contains an explanation of the exception.

Returns:

  • (String)

    The message contains an explanation of the exception.

#resource_keysArray<Types::RemediationExceptionResourceKey>

An exception list of resource exception keys to be processed with the current request. AWS Config adds exception for each resource key. For example, AWS Config adds 3 exceptions for 3 resource keys.

Returns: