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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.InputSourceDefinitionPropertystatic final classAn implementation forCfnService.InputSourceDefinitionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceConfiguration
Resource configuration for an input source.Provide exactly one field.
Returns union: either
IResolvableorCfnService.ResourceConfigurationProperty- See Also:
-
builder
-