Module Values.PolicyStoreAliasItemSource

Contains information about a policy store alias. This data type is used as a response parameter for the ListPolicyStoreAliases operation.

Sourcetype nonrec t = {
  1. aliasName : Alias.t option;
    (*

    The name of the policy store alias.

    *)
  2. policyStoreId : PolicyStoreId.t option;
    (*

    The ID of the policy store associated with the alias.

    *)
  3. aliasArn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the policy store alias.

    *)
  4. createdAt : TimestampFormat.t option;
    (*

    The date and time the policy store alias was created.

    *)
  5. 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.

    *)
}
Sourceval make : ?aliasName:??? -> ?policyStoreId:??? -> ?aliasArn:??? -> ?createdAt:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Alias.t | `Timestamp of TimestampFormat.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t