Class: Aws::IoT::Types::ReplaceDefaultPolicyVersionParams

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass ReplaceDefaultPolicyVersionParams data as a hash:

{
  template_name: "BLANK_POLICY", # required, accepts BLANK_POLICY
}

Parameters to define a mitigation action that adds a blank policy to restrict permissions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#template_nameString

The name of the template to be applied. The only supported value is `BLANK_POLICY`.

Returns:

  • (String)


15429
15430
15431
15432
15433
# File 'lib/aws-sdk-iot/types.rb', line 15429

class ReplaceDefaultPolicyVersionParams < Struct.new(
  :template_name)
  SENSITIVE = []
  include Aws::Structure
end