Values.PolicyStoreAliasItemSourceContains information about a policy store alias. This data type is used as a response parameter for the ListPolicyStoreAliases operation.
type nonrec t = {aliasName : Alias.t option;The name of the policy store alias.
*)policyStoreId : PolicyStoreId.t option;The ID of the policy store associated with the alias.
*)aliasArn : ResourceArn.t option;The Amazon Resource Name (ARN) of the policy store alias.
*)createdAt : TimestampFormat.t option;The date and time the policy store alias was created.
*)state : AliasState.t option;The state of the policy store alias. Policy Store Aliases in the Active state can be used normally. When a policy store alias is deleted, it enters the PendingDeletion state. Policy Store Aliases in the PendingDeletion state cannot be used, and creating a policy store alias with the same alias name will fail.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of Alias.t
| `Timestamp of TimestampFormat.t ])
list ]