interface ViewDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnTablePropsMixin.ViewDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnTablePropsMixin_ViewDefinitionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnTablePropsMixin.ViewDefinitionProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnTablePropsMixin.ViewDefinitionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnTablePropsMixin » 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/cfn-property-mixins';
const viewDefinitionProperty: glue.CfnTablePropsMixin.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