Values.BaseConfigurationItemSourceThe detailed configurations of a specified resource.
type nonrec t = {version : Version.t option;The version number of the resource configuration.
*)accountId : AccountId.t option;The 12-digit Amazon Web Services account ID associated with the resource.
*)configurationItemCaptureTime : ConfigurationItemCaptureTime.t option;The time when the recording of configuration changes was initiated for the resource.
*)configurationItemStatus : ConfigurationItemStatus.t option;The configuration item status. Valid values include: OK – The resource configuration has been updated. ResourceDiscovered – The resource was newly discovered. ResourceNotRecorded – The resource was discovered, but its configuration was not recorded since the recorder doesn't record resources of this type. ResourceDeleted – The resource was deleted ResourceDeletedNotRecorded – The resource was deleted, but its configuration was not recorded since the recorder doesn't record resources of this type.
*)configurationStateId : ConfigurationStateId.t option;An identifier that indicates the ordering of the configuration items of a resource.
*)arn : ARN.t option;The Amazon Resource Name (ARN) of the resource.
*)resourceType : ResourceType.t option;The type of Amazon Web Services resource.
*)resourceId : ResourceId.t option;The ID of the resource (for example., sg-xxxxxx).
*)resourceName : ResourceName.t option;The custom name of the resource, if available.
*)awsRegion : AwsRegion.t option;The region where the resource resides.
*)availabilityZone : AvailabilityZone.t option;The Availability Zone associated with the resource.
*)resourceCreationTime : ResourceCreationTime.t option;The time stamp when the resource was created.
*)configuration : Configuration.t option;A JSON-encoded string that contains the contents for the resource configuration. This string needs to be deserialized using json.loads() before you can access the contents.
*)supplementaryConfiguration : SupplementaryConfiguration.t option;A string to string map that contains additional contents for the resource configuration.Config returns this field for certain resource types to supplement the information returned for the configuration field. This string needs to be deserialized using json.loads() before you can access the contents.
*)recordingFrequency : RecordingFrequency.t option;The recording frequency that Config uses to record configuration changes for the resource. This field only appears in the API response when DAILY recording is enabled for a resource type. If this field is not present, CONTINUOUS recording is enabled for that resource type. For more information on daily recording and continuous recording, see Recording Frequency in the Config Developer Guide.
*)configurationItemDeliveryTime : ConfigurationItemDeliveryTime.t option;The time when configuration changes for the resource were delivered. This field is optional and is not guaranteed to be present in a configuration item (CI). If you are using daily recording, this field will be populated. However, if you are using continuous recording, this field will be omitted since the delivery time is instantaneous as the CI is available right away. For more information on daily recording and continuous recording, see Recording Frequency in the Config Developer Guide.
*)}val make :
?version:??? ->
?accountId:??? ->
?configurationItemCaptureTime:??? ->
?configurationItemStatus:??? ->
?configurationStateId:??? ->
?arn:??? ->
?resourceType:??? ->
?resourceId:??? ->
?resourceName:??? ->
?awsRegion:??? ->
?availabilityZone:??? ->
?resourceCreationTime:??? ->
?configuration:??? ->
?supplementaryConfiguration:??? ->
?recordingFrequency:??? ->
?configurationItemDeliveryTime:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of SupplementaryConfigurationName.t ]
* [> `String of SupplementaryConfigurationValue.t ])
list
| `String of Version.t
| `Timestamp of ConfigurationItemCaptureTime.t ])
list ]