Module Values.PutResourceConfigRequestSource

Records the configuration state for the resource provided in the request. The configuration state of a resource is represented in Config as Configuration Items. Once this API records the configuration item, you can retrieve the list of configuration items for the custom resource type using existing Config APIs. The custom resource type must be registered with CloudFormation. This API accepts the configuration item registered with CloudFormation. When you call this API, Config only stores configuration state of the resource provided in the request. This API does not change or remediate the configuration of the resource. Write-only schema properites are not recorded as part of the published configuration item.

Sourcetype nonrec t = {
  1. resourceType : ResourceTypeString.t;
    (*

    The type of the resource. The custom resource type must be registered with CloudFormation. You cannot use the organization names “amzn”, “amazon”, “alexa”, “custom” with custom resource types. It is the first part of the ResourceType up to the first ::.

    *)
  2. schemaVersionId : SchemaVersionId.t;
    (*

    Version of the schema registered for the ResourceType in CloudFormation.

    *)
  3. resourceId : ResourceId.t;
    (*

    Unique identifier of the resource.

    *)
  4. resourceName : ResourceName.t option;
    (*

    Name of the resource.

    *)
  5. configuration : Configuration.t;
    (*

    The configuration object of the resource in valid JSON format. It must match the schema registered with CloudFormation. The configuration JSON must not exceed 64 KB.

    *)
  6. tags : Tags.t option;
    (*

    Tags associated with the resource. This field is not to be confused with the Amazon Web Services-wide tag feature for Amazon Web Services resources. Tags for PutResourceConfig are tags that you supply for the configuration items of your custom resources.

    *)
}
Sourceval context_ : string
Sourceval make : ?resourceName:??? -> ?tags:??? -> resourceType:ResourceTypeString.t -> schemaVersionId:SchemaVersionId.t -> resourceId:ResourceId.t -> configuration:Configuration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of Name.t ] * [> `String of Value.t ]) list | `String of ResourceTypeString.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