interface InputSourceDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ResilienceHubV2.CfnServicePropsMixin.InputSourceDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsresiliencehubv2#CfnServicePropsMixin_InputSourceDefinitionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.resiliencehubv2.CfnServicePropsMixin.InputSourceDefinitionProperty |
Python | aws_cdk.cfn_property_mixins.aws_resiliencehubv2.CfnServicePropsMixin.InputSourceDefinitionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_resiliencehubv2 » CfnServicePropsMixin » 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/cfn-property-mixins';
const inputSourceDefinitionProperty: resiliencehubv2.CfnServicePropsMixin.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
(optional)
Resource configuration for an input source.
Provide exactly one field.

.NET
Go
Java
Python
TypeScript