Module Values.ConformancePackDetailSource

Returns details of a conformance pack. A conformance pack is a collection of Config rules and remediation actions that can be easily deployed in an account and a region.

Sourcetype nonrec t = {
  1. conformancePackName : ConformancePackName.t option;
    (*

    Name of the conformance pack.

    *)
  2. conformancePackArn : ConformancePackArn.t option;
    (*

    Amazon Resource Name (ARN) of the conformance pack.

    *)
  3. conformancePackId : ConformancePackId.t option;
    (*

    ID of the conformance pack.

    *)
  4. deliveryS3Bucket : DeliveryS3Bucket.t option;
    (*

    The name of the Amazon S3 bucket where Config stores conformance pack templates. This field is optional.

    *)
  5. deliveryS3KeyPrefix : DeliveryS3KeyPrefix.t option;
    (*

    The prefix for the Amazon S3 bucket. This field is optional.

    *)
  6. conformancePackInputParameters : ConformancePackInputParameters.t option;
    (*

    A list of ConformancePackInputParameter objects.

    *)
  7. lastUpdateRequestedTime : Date.t option;
    (*

    The last time a conformation pack update was requested.

    *)
  8. createdBy : StringWithCharLimit256.t option;
    (*

    The Amazon Web Services service that created the conformance pack.

    *)
  9. templateSSMDocumentDetails : TemplateSSMDocumentDetails.t option;
    (*

    An object that contains the name or Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack.

    *)
}
Sourceval make : ?conformancePackName:??? -> ?conformancePackArn:??? -> ?conformancePackId:??? -> ?deliveryS3Bucket:??? -> ?deliveryS3KeyPrefix:??? -> ?conformancePackInputParameters:??? -> ?lastUpdateRequestedTime:??? -> ?createdBy:??? -> ?templateSSMDocumentDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ParameterName.t ]) list ] list | `String of ConformancePackName.t | `Structure of (string * [> `String of SSMDocumentName.t ]) list | `Timestamp of Date.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