Class: Aws::IAM::Types::DeletePolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeletePolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass DeletePolicyRequest data as a hash:
{
policy_arn: "arnType", # required
}
Instance Attribute Summary collapse
-
#policy_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM policy you want to delete.
Instance Attribute Details
#policy_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM policy you want to delete.
For more information about ARNs, see [Amazon Resource Names (ARNs) and AWS Service Namespaces] in the *AWS General Reference*.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1769 1770 1771 1772 |
# File 'lib/aws-sdk-iam/types.rb', line 1769 class DeletePolicyRequest < Struct.new( :policy_arn) include Aws::Structure end |