Class: Aws::CloudWatchLogs::Types::DeleteResourcePolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::DeleteResourcePolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Note:
When making an API call, you may pass DeleteResourcePolicyRequest data as a hash:
{
policy_name: "PolicyName",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy_name ⇒ String
The name of the policy to be revoked.
Instance Attribute Details
#policy_name ⇒ String
The name of the policy to be revoked. This parameter is required.
365 366 367 368 369 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 365 class DeleteResourcePolicyRequest < Struct.new( :policy_name) SENSITIVE = [] include Aws::Structure end |