Interface CfnService.InputSourceDefinitionProperty

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

@Stability(Stable) public static interface CfnService.InputSourceDefinitionProperty extends software.amazon.jsii.JsiiSerializable
An input source for the service.

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.*;
 InputSourceDefinitionProperty inputSourceDefinitionProperty = InputSourceDefinitionProperty.builder()
         .resourceConfiguration(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())
         .build();
 

See Also: