interface ViewDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnTable.ViewDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnTable_ViewDefinitionProperty |
Java | software.amazon.awscdk.services.glue.CfnTable.ViewDefinitionProperty |
Python | aws_cdk.aws_glue.CfnTable.ViewDefinitionProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnTable » ViewDefinitionProperty |
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 viewDefinitionProperty: glue.CfnTable.ViewDefinitionProperty = {
definer: 'definer',
isProtected: false,
representations: [{
dialect: 'dialect',
dialectVersion: 'dialectVersion',
validationConnection: 'validationConnection',
viewExpandedText: 'viewExpandedText',
viewOriginalText: 'viewOriginalText',
}],
subObjects: ['subObjects'],
};
Properties
| Name | Type | Description |
|---|---|---|
| definer? | string | |
| is | boolean | IResolvable | |
| representations? | IResolvable | (IResolvable | View)[] | |
| sub | string[] |
definer?
Type:
string
(optional)
isProtected?
Type:
boolean | IResolvable
(optional)
representations?
Type:
IResolvable | (IResolvable | View)[]
(optional)
subObjects?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript