Interface CfnService.ResourceConfigurationProperty

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

@Stability(Stable) public static interface CfnService.ResourceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Resource configuration for an input source.

Provide exactly one field.

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.resiliencehubv2.*;
 ResourceConfigurationProperty resourceConfigurationProperty = ResourceConfigurationProperty.builder()
         .cfnStackArn("cfnStackArn")
         .designFileS3Url("designFileS3Url")
         .eks(EksSourceProperty.builder()
                 .clusterArn("clusterArn")
                 .namespaces(List.of("namespaces"))
                 .build())
         .resourceTags(List.of(ResourceTagProperty.builder()
                 .key("key")
                 .values(List.of("values"))
                 .build()))
         .tfStateFileUrl("tfStateFileUrl")
         .build();
 

See Also: