interface IdNamespaceInputSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnIdNamespacePropsMixin.IdNamespaceInputSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnIdNamespacePropsMixin_IdNamespaceInputSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnIdNamespacePropsMixin.IdNamespaceInputSourceProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnIdNamespacePropsMixin.IdNamespaceInputSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnIdNamespacePropsMixin » IdNamespaceInputSourceProperty |
An object containing inputSourceARN and schemaName .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const idNamespaceInputSourceProperty: entityresolution_mixins.CfnIdNamespacePropsMixin.IdNamespaceInputSourceProperty = {
inputSourceArn: 'inputSourceArn',
schemaName: 'schemaName',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table. |
| schema | string | The name of the schema. |
inputSourceArn?
Type:
string
(optional)
An AWS Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.
schemaName?
Type:
string
(optional)
The name of the schema.

.NET
Go
Java
Python
TypeScript