Class: Aws::CloudWatchLogs::Types::DeleteResourcePolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::DeleteResourcePolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expected_revision_id ⇒ String
The expected revision ID of the resource policy.
-
#policy_name ⇒ String
The name of the policy to be revoked.
-
#resource_arn ⇒ String
The ARN of the CloudWatch Logs resource for which the resource policy needs to be deleted.
Instance Attribute Details
#expected_revision_id ⇒ String
The expected revision ID of the resource policy. Required when deleting a resource-scoped policy to prevent concurrent modifications.
1454 1455 1456 1457 1458 1459 1460 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 1454 class DeleteResourcePolicyRequest < Struct.new( :policy_name, :resource_arn, :expected_revision_id) SENSITIVE = [] include Aws::Structure end |
#policy_name ⇒ String
The name of the policy to be revoked. This parameter is required.
1454 1455 1456 1457 1458 1459 1460 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 1454 class DeleteResourcePolicyRequest < Struct.new( :policy_name, :resource_arn, :expected_revision_id) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The ARN of the CloudWatch Logs resource for which the resource policy needs to be deleted
1454 1455 1456 1457 1458 1459 1460 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 1454 class DeleteResourcePolicyRequest < Struct.new( :policy_name, :resource_arn, :expected_revision_id) SENSITIVE = [] include Aws::Structure end |