Values.ResourceDetailsSourceReturns information about the resource being evaluated.
type nonrec t = {resourceId : BaseResourceId.t;A unique resource ID for an evaluation.
*)resourceType : StringWithCharLimit256.t;The type of resource being evaluated.
*)resourceConfiguration : ResourceConfiguration.t;The resource definition to be evaluated as per the resource configuration schema type.
*)resourceConfigurationSchemaType : ResourceConfigurationSchemaType.t option;The schema type of the resource configuration. You can find the Resource type schema, or CFN_RESOURCE_SCHEMA, in "Amazon Web Services public extensions" within the CloudFormation registry or with the following CLI commmand: aws cloudformation describe-type --type-name "AWS::S3::Bucket" --type RESOURCE. For more information, see Managing extensions through the CloudFormation registry and Amazon Web Services resource and property types reference in the CloudFormation User Guide.
*)}val make :
?resourceConfigurationSchemaType:??? ->
resourceId:BaseResourceId.t ->
resourceType:StringWithCharLimit256.t ->
resourceConfiguration:ResourceConfiguration.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of BaseResourceId.t ]) list ]