interface ViewRepresentationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.ViewRepresentationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_ViewRepresentationProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.ViewRepresentationProperty |
Python | aws_cdk.aws_glue.CfnTable.ViewRepresentationProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnTable » ViewRepresentationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const viewRepresentationProperty: glue.CfnTable.ViewRepresentationProperty = {
dialect: 'dialect',
dialectVersion: 'dialectVersion',
validationConnection: 'validationConnection',
viewExpandedText: 'viewExpandedText',
viewOriginalText: 'viewOriginalText',
};
Properties
| Name | Type | Description |
|---|---|---|
| dialect? | string | |
| dialect | string | |
| validation | string | |
| view | string | |
| view | string |
dialect?
Type:
string
(optional)
dialectVersion?
Type:
string
(optional)
validationConnection?
Type:
string
(optional)
viewExpandedText?
Type:
string
(optional)
viewOriginalText?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript