interface EndpointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnApi.EndpointConfigurationProperty |
Java | software.amazon.awscdk.services.sam.CfnApi.EndpointConfigurationProperty |
Python | aws_cdk.aws_sam.CfnApi.EndpointConfigurationProperty |
TypeScript | @aws-cdk/aws-sam » CfnApi » EndpointConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
const endpointConfigurationProperty: sam.CfnApi.EndpointConfigurationProperty = {
type: 'type',
vpcEndpointIds: ['vpcEndpointIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | CfnApi.EndpointConfigurationProperty.Type. |
| vpc | string[] | CfnApi.EndpointConfigurationProperty.VpcEndpointIds. |
type?
Type:
string
(optional)
CfnApi.EndpointConfigurationProperty.Type.
vpcEndpointIds?
Type:
string[]
(optional)
CfnApi.EndpointConfigurationProperty.VpcEndpointIds.

.NET
Java
Python
TypeScript