Interface CfnAppPropsMixin.ResourceMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAppPropsMixin.ResourceMappingProperty.Jsii$Proxy
Enclosing class:
CfnAppPropsMixin

@Stability(Stable) public static interface CfnAppPropsMixin.ResourceMappingProperty extends software.amazon.jsii.JsiiSerializable
Defines a resource mapping.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.resiliencehub.*;
 ResourceMappingProperty resourceMappingProperty = ResourceMappingProperty.builder()
         .eksSourceName("eksSourceName")
         .logicalStackName("logicalStackName")
         .mappingType("mappingType")
         .physicalResourceId(PhysicalResourceIdProperty.builder()
                 .awsAccountId("awsAccountId")
                 .awsRegion("awsRegion")
                 .identifier("identifier")
                 .type("type")
                 .build())
         .resourceName("resourceName")
         .terraformSourceName("terraformSourceName")
         .build();
 

See Also: