interface VpcConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnTableOptimizerPropsMixin.VpcConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnTableOptimizerPropsMixin_VpcConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnTableOptimizerPropsMixin.VpcConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnTableOptimizerPropsMixin.VpcConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnTableOptimizerPropsMixin » VpcConfigurationProperty |
An object that describes the VPC configuration for a table optimizer.
This configuration is necessary to perform optimization on tables that are in a customer VPC.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const vpcConfigurationProperty: glue_mixins.CfnTableOptimizerPropsMixin.VpcConfigurationProperty = {
glueConnectionName: 'glueConnectionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| glue | string | The name of the AWS Glue connection used for the VPC for the table optimizer. |
glueConnectionName?
Type:
string
(optional)
The name of the AWS Glue connection used for the VPC for the table optimizer.

.NET
Go
Java
Python
TypeScript