Class: Aws::SSOAdmin::Types::CustomerManagedPolicyReference

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of the IAM policy that you have configured in each account where you want to deploy your permission set.

Returns:

  • (String)


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

#pathString

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

Returns:

  • (String)


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