Interface CfnApp.ResourceMappingProperty

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

@Stability(Stable) public static interface CfnApp.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.services.resiliencehub.*;
 ResourceMappingProperty resourceMappingProperty = ResourceMappingProperty.builder()
         .mappingType("mappingType")
         .physicalResourceId(PhysicalResourceIdProperty.builder()
                 .identifier("identifier")
                 .type("type")
                 // the properties below are optional
                 .awsAccountId("awsAccountId")
                 .awsRegion("awsRegion")
                 .build())
         // the properties below are optional
         .eksSourceName("eksSourceName")
         .logicalStackName("logicalStackName")
         .resourceName("resourceName")
         .terraformSourceName("terraformSourceName")
         .build();
 

See Also: