Interface CfnResourceConfiguration.ResourceConfigurationDefinitionProperty

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

@Stability(Stable) public static interface CfnResourceConfiguration.ResourceConfigurationDefinitionProperty extends software.amazon.jsii.JsiiSerializable
Identifies the resource configuration in one of the following ways:.

  • Amazon Resource Name (ARN) - Supported resource-types that are provisioned by AWS services, such as RDS databases, can be identified by their ARN.
  • Domain name - Any domain name that is publicly resolvable.
  • IP address - For IPv4 and IPv6, only IP addresses in the VPC are supported.

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.vpclattice.*;
 ResourceConfigurationDefinitionProperty resourceConfigurationDefinitionProperty = ResourceConfigurationDefinitionProperty.builder()
         .arnResource("arnResource")
         .dnsResource(DnsResourceProperty.builder()
                 .domainName("domainName")
                 .ipAddressType("ipAddressType")
                 .build())
         .ipResource("ipResource")
         .build();
 

See Also: