interface ResourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.ResourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_ResourceConfigurationProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.ResourceConfigurationProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.ResourceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » ResourceConfigurationProperty |
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 { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const resourceConfigurationProperty: resiliencehubv2.CfnService.ResourceConfigurationProperty = {
cfnStackArn: 'cfnStackArn',
designFileS3Url: 'designFileS3Url',
eks: {
clusterArn: 'clusterArn',
namespaces: ['namespaces'],
},
resourceTags: [{
key: 'key',
values: ['values'],
}],
tfStateFileUrl: 'tfStateFileUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| cfn | string | ARN of a CloudFormation stack. |
| design | string | S3 URL of a design file. |
| eks? | IResolvable | Eks | |
| resource | IResolvable | (IResolvable | Resource)[] | Resource tags to discover resources. |
| tf | string | URL of a Terraform state file. |
cfnStackArn?
Type:
string
(optional)
ARN of a CloudFormation stack.
designFileS3Url?
Type:
string
(optional)
S3 URL of a design file.
eks?
Type:
IResolvable | Eks
(optional)
resourceTags?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
Resource tags to discover resources.
tfStateFileUrl?
Type:
string
(optional)
URL of a Terraform state file.

.NET
Go
Java
Python
TypeScript