Class: Aws::IAM::Types::PolicyParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::PolicyParameter
- Defined in:
- gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb
Overview
Contains information about a policy parameter used to customize delegated permissions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the policy parameter.
-
#type ⇒ String
The data type of the policy parameter value.
-
#values ⇒ Array<String>
The allowed values for the policy parameter.
Instance Attribute Details
#name ⇒ String
The name of the policy parameter.
9279 9280 9281 9282 9283 9284 9285 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 9279 class PolicyParameter < Struct.new( :name, :values, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the policy parameter value.
9279 9280 9281 9282 9283 9284 9285 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 9279 class PolicyParameter < Struct.new( :name, :values, :type) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The allowed values for the policy parameter.
9279 9280 9281 9282 9283 9284 9285 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 9279 class PolicyParameter < Struct.new( :name, :values, :type) SENSITIVE = [] include Aws::Structure end |