Class: Aws::SSOAdmin::Types::CustomerManagedPolicyReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::CustomerManagedPolicyReference
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssoadmin/types.rb
Overview
Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each Amazon Web Services account where you want to deploy your permission set.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the IAM policy that you have configured in each account where you want to deploy your permission set.
-
#path ⇒ String
The path to the IAM policy that you have configured in each account where you want to deploy your permission set.
Instance Attribute Details
#name ⇒ String
The name of the IAM policy that you have configured in each account where you want to deploy your permission set.
981 982 983 984 985 986 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 981 class CustomerManagedPolicyReference < Struct.new( :name, :path) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path to the IAM policy that you have configured in each account where you want to deploy your permission set. The default is ‘/`. For more information, see [Friendly names and paths] in the *IAM User Guide*.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names
981 982 983 984 985 986 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 981 class CustomerManagedPolicyReference < Struct.new( :name, :path) SENSITIVE = [] include Aws::Structure end |