Module Values.GetPolicyStoreOutputSource

Retrieves details about a policy store.

Sourcetype nonrec t = {
  1. policyStoreId : PolicyStoreId.t option;
    (*

    The ID of the policy store;

    *)
  2. arn : ResourceArn.t option;
    (*

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

    *)
  3. validationSettings : ValidationSettings.t option;
    (*

    The current validation settings for the policy store.

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

    The date and time that the policy store was originally created.

    *)
  5. lastUpdatedDate : TimestampFormat.t option;
    (*

    The date and time that the policy store was last updated.

    *)
  6. description : PolicyStoreDescription.t option;
    (*

    Descriptive text that you can provide to help with identification of the current policy store.

    *)
  7. deletionProtection : DeletionProtection.t option;
    (*

    Specifies whether the policy store can be deleted. If enabled, the policy store can't be deleted. The default state is DISABLED.

    *)
  8. encryptionState : EncryptionState.t option;
    (*

    A structure that contains the encryption configuration for the policy store.

    *)
  9. cedarVersion : CedarVersion.t option;
    (*

    The version of the Cedar language used with policies, policy templates, and schemas in this policy store. For more information, see Amazon Verified Permissions upgrade to Cedar v4 FAQ.

    *)
  10. tags : TagMap.t option;
    (*

    The list of tags associated with the policy store.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?policyStoreId:??? -> ?arn:??? -> ?validationSettings:??? -> ?createdDate:??? -> ?lastUpdatedDate:??? -> ?description:??? -> ?deletionProtection:??? -> ?encryptionState:??? -> ?cedarVersion:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of PolicyStoreId.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Map of ([> `String of EncryptionContextKey.t ] * [> `String of EncryptionContextValue.t ]) list | `String of KmsKey.t ]) list ]) list | `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