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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.ResourceConfigurationPropertystatic final classAn implementation forCfnService.ResourceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringARN of a CloudFormation stack.default StringS3 URL of a design file.default ObjectgetEks()Returns union: eitherIResolvableorCfnService.EksSourcePropertydefault ObjectResource tags to discover resources.default StringURL of a Terraform state file.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCfnStackArn
ARN of a CloudFormation stack.- See Also:
-
getDesignFileS3Url
S3 URL of a design file.- See Also:
-
getEks
Returns union: eitherIResolvableorCfnService.EksSourceProperty- See Also:
-
getResourceTags
Resource tags to discover resources.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnService.ResourceTagProperty>- See Also:
-
getTfStateFileUrl
URL of a Terraform state file.- See Also:
-
builder
-