interface InputSourceDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ResilienceHubV2.CfnService.InputSourceDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresiliencehubv2#CfnService_InputSourceDefinitionProperty |
Java | software.amazon.awscdk.services.resiliencehubv2.CfnService.InputSourceDefinitionProperty |
Python | aws_cdk.aws_resiliencehubv2.CfnService.InputSourceDefinitionProperty |
TypeScript | aws-cdk-lib » aws_resiliencehubv2 » CfnService » InputSourceDefinitionProperty |
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 { aws_resiliencehubv2 as resiliencehubv2 } from 'aws-cdk-lib';
const inputSourceDefinitionProperty: resiliencehubv2.CfnService.InputSourceDefinitionProperty = {
resourceConfiguration: {
cfnStackArn: 'cfnStackArn',
designFileS3Url: 'designFileS3Url',
eks: {
clusterArn: 'clusterArn',
namespaces: ['namespaces'],
},
resourceTags: [{
key: 'key',
values: ['values'],
}],
tfStateFileUrl: 'tfStateFileUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | IResolvable | Resource | Resource configuration for an input source. |
resourceConfiguration
Type:
IResolvable | Resource
Resource configuration for an input source.
Provide exactly one field.

.NET
Go
Java
Python
TypeScript