Module Values.ResourceMappingSource

Defines a resource mapping.

Sourcetype nonrec t = {
  1. appRegistryAppName : EntityName.t option;
    (*

    Name of the application this resource is mapped to when the mappingType is AppRegistryApp.

    *)
  2. eksSourceName : String255.t option;
    (*

    Name of the Amazon Elastic Kubernetes Service cluster and namespace that this resource is mapped to when the mappingType is EKS. This parameter accepts values in "eks-cluster/namespace" format.

    *)
  3. logicalStackName : String255.t option;
    (*

    Name of the CloudFormation stack this resource is mapped to when the mappingType is CfnStack.

    *)
  4. mappingType : ResourceMappingType.t;
    (*

    Specifies the type of resource mapping.

    *)
  5. physicalResourceId : PhysicalResourceId.t;
    (*

    Identifier of the physical resource.

    *)
  6. resourceGroupName : EntityName.t option;
    (*

    Name of the Resource Groups that this resource is mapped to when the mappingType is ResourceGroup.

    *)
  7. resourceName : EntityName.t option;
    (*

    Name of the resource that this resource is mapped to when the mappingType is Resource.

    *)
  8. terraformSourceName : String255.t option;
    (*

    Name of the Terraform source that this resource is mapped to when the mappingType is Terraform.

    *)
}
Sourceval context_ : string
Sourceval make : ?appRegistryAppName:??? -> ?eksSourceName:??? -> ?logicalStackName:??? -> ?resourceGroupName:??? -> ?resourceName:??? -> ?terraformSourceName:??? -> mappingType:ResourceMappingType.t -> physicalResourceId:PhysicalResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EntityName.t | `Structure of (string * [> `Enum of string | `String of CustomerId.t ]) list ]) 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