Module SSO.PermissionSet

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-permissionset.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and customer_managed_policy_reference = {
  1. path : string option;
  2. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sso-permissionset-customermanagedpolicyreference.html

and permissions_boundary = {
  1. customer_managed_policy_reference : customer_managed_policy_reference option;
  2. managed_policy_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sso-permissionset-permissionsboundary.html

type properties = {
  1. relay_state_type : string option;
  2. customer_managed_policy_references : customer_managed_policy_reference list option;
  3. session_duration : string option;
  4. description : string option;
  5. instance_arn : string;
  6. inline_policy : Yojson.Safe.t option;
  7. managed_policies : string list option;
  8. tags : tag list option;
  9. name : string;
  10. permissions_boundary : permissions_boundary option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-permissionset.html;

val make_properties : ?relay_state_type:string -> ?customer_managed_policy_references:customer_managed_policy_reference list -> ?session_duration:string -> ?description:string -> instance_arn:string -> ?inline_policy:Yojson.Safe.t -> ?managed_policies:string list -> ?tags:tag list -> name:string -> ?permissions_boundary:permissions_boundary -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_customer_managed_policy_reference : ?path:string -> name:string -> unit -> customer_managed_policy_reference
val make_permissions_boundary : ?customer_managed_policy_reference:customer_managed_policy_reference -> ?managed_policy_arn:string -> unit -> permissions_boundary
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_customer_managed_policy_reference : customer_managed_policy_reference -> Yojson.Safe.t
val yojson_of_permissions_boundary : permissions_boundary -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. permission_set_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string