Class: Aws::IAM::Types::DeleteRolePolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteRolePolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
When making an API call, you may pass DeleteRolePolicyRequest data as a hash:
{
role_name: "roleNameType", # required
policy_name: "policyNameType", # required
}
Instance Attribute Summary collapse
-
#policy_name ⇒ String
The name of the inline policy to delete from the specified IAM role.
-
#role_name ⇒ String
The name (friendly name, not ARN) identifying the role that the policy is embedded in.
Instance Attribute Details
#policy_name ⇒ String
The name of the inline policy to delete from the specified IAM role.
This parameter allows (per its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
1875 1876 1877 1878 1879 |
# File 'lib/aws-sdk-iam/types.rb', line 1875 class DeleteRolePolicyRequest < Struct.new( :role_name, :policy_name) include Aws::Structure end |
#role_name ⇒ String
The name (friendly name, not ARN) identifying the role that the policy is embedded in.
This parameter allows (per its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
1875 1876 1877 1878 1879 |
# File 'lib/aws-sdk-iam/types.rb', line 1875 class DeleteRolePolicyRequest < Struct.new( :role_name, :policy_name) include Aws::Structure end |