aws-cdk-lib.aws_ec2.InterfaceVpcEndpointAwsService

class InterfaceVpcEndpointAwsService

LanguageType name
.NETAmazon.CDK.AWS.EC2.InterfaceVpcEndpointAwsService
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#InterfaceVpcEndpointAwsService
Javasoftware.amazon.awscdk.services.ec2.InterfaceVpcEndpointAwsService
Pythonaws_cdk.aws_ec2.InterfaceVpcEndpointAwsService
TypeScript (source)aws-cdk-lib » aws_ec2 » InterfaceVpcEndpointAwsService

Implements IInterfaceVpcEndpointService

An AWS service for an interface VPC endpoint.

Example

    // Add gateway endpoints when creating the VPC
    const vpc = new ec2.Vpc(this, 'MyVpc', {
      gatewayEndpoints: {
        S3: {
          service: ec2.GatewayVpcEndpointAwsService.S3,
        },
      },
    });

    // Alternatively gateway endpoints can be added on the VPC
    const dynamoDbEndpoint = vpc.addGatewayEndpoint('DynamoDbEndpoint', {
      service: ec2.GatewayVpcEndpointAwsService.DYNAMODB,
    });

    // This allows to customize the endpoint policy
    dynamoDbEndpoint.addToPolicy(
      new iam.PolicyStatement({ // Restrict to listing and describing tables
        principals: [new iam.AnyPrincipal()],
        actions: ['dynamodb:DescribeTable', 'dynamodb:ListTables'],
        resources: ['*'],
      }));

    // Add an interface endpoint
    vpc.addInterfaceEndpoint('EcrDockerEndpoint', {
      service: ec2.InterfaceVpcEndpointAwsService.ECR_DOCKER,

      // Uncomment the following to allow more fine-grained control over
      // who can access the endpoint via the '.connections' object.
      // open: false
    });

Initializer

new InterfaceVpcEndpointAwsService(name: string, prefix?: string, port?: number)

Parameters

  • name string — The name of the service.
  • prefix string
  • port number — The port of the service.

Properties

NameTypeDescription
namestringThe name of the service.
portnumberThe port of the service.
shortNamestringThe short name of the service.
privateDnsDefault?booleanWhether Private DNS is supported by default.
static ACCESS_ANALYZERInterfaceVpcEndpointAwsService
static ACCOUNT_MANAGEMENTInterfaceVpcEndpointAwsService
static AIRFLOW_APIInterfaceVpcEndpointAwsService
static AIRFLOW_ENVInterfaceVpcEndpointAwsService
static AIRFLOW_OPSInterfaceVpcEndpointAwsService
static APIGATEWAYInterfaceVpcEndpointAwsService
static APPLICATION_AUTOSCALINGInterfaceVpcEndpointAwsService
static APPLICATION_MIGRATION_SERVICEInterfaceVpcEndpointAwsService
static APPSTREAM_APIInterfaceVpcEndpointAwsService
static APPSTREAM_STREAMINGInterfaceVpcEndpointAwsService
static APP_MESHInterfaceVpcEndpointAwsService
static APP_RUNNERInterfaceVpcEndpointAwsService
static APP_RUNNER_REQUESTSInterfaceVpcEndpointAwsService
static APP_SYNCInterfaceVpcEndpointAwsService
static ATHENAInterfaceVpcEndpointAwsService
static AUDIT_MANAGERInterfaceVpcEndpointAwsService
static AUTOSCALINGInterfaceVpcEndpointAwsService
static AUTOSCALING_PLANSInterfaceVpcEndpointAwsService
static BACKUPInterfaceVpcEndpointAwsService
static BACKUP_GATEWAYInterfaceVpcEndpointAwsService
static BATCHInterfaceVpcEndpointAwsService
static BILLING_CONDUCTORInterfaceVpcEndpointAwsService
static BRAKETInterfaceVpcEndpointAwsService
static CLOUDFORMATIONInterfaceVpcEndpointAwsService
static CLOUDHSMInterfaceVpcEndpointAwsService
static CLOUDTRAILInterfaceVpcEndpointAwsService
static CLOUDWATCHInterfaceVpcEndpointAwsService
static CLOUDWATCH_EVENTSInterfaceVpcEndpointAwsService
static CLOUDWATCH_EVIDENTLYInterfaceVpcEndpointAwsService
static CLOUDWATCH_EVIDENTLY_DATAPLANEInterfaceVpcEndpointAwsService
static CLOUDWATCH_LOGSInterfaceVpcEndpointAwsService
static CLOUDWATCH_MONITORINGInterfaceVpcEndpointAwsService
static CLOUDWATCH_RUMInterfaceVpcEndpointAwsService
static CLOUDWATCH_RUM_DATAPLANEInterfaceVpcEndpointAwsService
static CLOUDWATCH_SYNTHETICSInterfaceVpcEndpointAwsService
static CLOUD_CONTROL_APIInterfaceVpcEndpointAwsService
static CLOUD_CONTROL_API_FIPSInterfaceVpcEndpointAwsService
static CLOUD_DIRECTORYInterfaceVpcEndpointAwsService
static CODEARTIFACT_APIInterfaceVpcEndpointAwsService
static CODEARTIFACT_REPOSITORIESInterfaceVpcEndpointAwsService
static CODEBUILDInterfaceVpcEndpointAwsService
static CODEBUILD_FIPSInterfaceVpcEndpointAwsService
static CODECOMMITInterfaceVpcEndpointAwsService
static CODECOMMIT_FIPSInterfaceVpcEndpointAwsService
static CODECOMMIT_GITInterfaceVpcEndpointAwsService
static CODECOMMIT_GIT_FIPSInterfaceVpcEndpointAwsService
static CODEDEPLOYInterfaceVpcEndpointAwsService
static CODEDEPLOY_COMMANDS_SECUREInterfaceVpcEndpointAwsService
static CODEGURU_PROFILERInterfaceVpcEndpointAwsService
static CODEGURU_REVIEWERInterfaceVpcEndpointAwsService
static CODEPIPELINEInterfaceVpcEndpointAwsService
static CODESTAR_CONNECTIONSInterfaceVpcEndpointAwsService
static COMPREHENDInterfaceVpcEndpointAwsService
static COMPREHEND_MEDICALInterfaceVpcEndpointAwsService
static CONFIGInterfaceVpcEndpointAwsService
static CONNECT_APP_INTEGRATIONSInterfaceVpcEndpointAwsService
static CONNECT_CASESInterfaceVpcEndpointAwsService
static CONNECT_CONNECT_CAMPAIGNSInterfaceVpcEndpointAwsService
static CONNECT_PROFILEInterfaceVpcEndpointAwsService
static CONNECT_VOICEIDInterfaceVpcEndpointAwsService
static CONNECT_WISDOMInterfaceVpcEndpointAwsService
static DATABASE_MIGRATION_SERVICEInterfaceVpcEndpointAwsService
static DATABASE_MIGRATION_SERVICE_FIPSInterfaceVpcEndpointAwsService
static DATASYNCInterfaceVpcEndpointAwsService
static DATA_EXCHANGEInterfaceVpcEndpointAwsService
static DEVOPS_GURUInterfaceVpcEndpointAwsService
static EBS_DIRECTInterfaceVpcEndpointAwsService
static EC2InterfaceVpcEndpointAwsService
static EC2_MESSAGESInterfaceVpcEndpointAwsService
static ECRInterfaceVpcEndpointAwsService
static ECR_DOCKERInterfaceVpcEndpointAwsService
static ECSInterfaceVpcEndpointAwsService
static ECS_AGENTInterfaceVpcEndpointAwsService
static ECS_TELEMETRYInterfaceVpcEndpointAwsService
static EKSInterfaceVpcEndpointAwsService
static ELASTICACHEInterfaceVpcEndpointAwsService
static ELASTICACHE_FIPSInterfaceVpcEndpointAwsService
static ELASTIC_BEANSTALKInterfaceVpcEndpointAwsService
static ELASTIC_BEANSTALK_HEALTHInterfaceVpcEndpointAwsService
static ELASTIC_DISASTER_RECOVERYInterfaceVpcEndpointAwsService
static ELASTIC_FILESYSTEMInterfaceVpcEndpointAwsService
static ELASTIC_FILESYSTEM_FIPSInterfaceVpcEndpointAwsService
static ELASTIC_INFERENCE_RUNTIMEInterfaceVpcEndpointAwsService
static ELASTIC_LOAD_BALANCINGInterfaceVpcEndpointAwsService
static EMAIL_SMTPInterfaceVpcEndpointAwsService
static EMRInterfaceVpcEndpointAwsService
static EMR_EKSInterfaceVpcEndpointAwsService
static EMR_SERVERLESSInterfaceVpcEndpointAwsService
static EVENTBRIDGEInterfaceVpcEndpointAwsService
static FAULT_INJECTION_SIMULATORInterfaceVpcEndpointAwsService
static FINSPACEInterfaceVpcEndpointAwsService
static FINSPACE_APIInterfaceVpcEndpointAwsService
static FORECASTInterfaceVpcEndpointAwsService
static FORECAST_FIPSInterfaceVpcEndpointAwsService
static FORECAST_QUERYInterfaceVpcEndpointAwsService
static FORECAST_QUERY_FIPSInterfaceVpcEndpointAwsService
static FRAUD_DETECTORInterfaceVpcEndpointAwsService
static FSXInterfaceVpcEndpointAwsService
static FSX_FIPSInterfaceVpcEndpointAwsService
static GLUEInterfaceVpcEndpointAwsService
static GLUE_DATABREWInterfaceVpcEndpointAwsService
static GRAFANAInterfaceVpcEndpointAwsService
static GRAFANA_WORKSPACEInterfaceVpcEndpointAwsService
static GROUNDSTATIONInterfaceVpcEndpointAwsService
static HEALTHLAKEInterfaceVpcEndpointAwsService
static IAM_IDENTITY_CENTERInterfaceVpcEndpointAwsService
static IAM_ROLES_ANYWHEREInterfaceVpcEndpointAwsService
static IMAGE_BUILDERInterfaceVpcEndpointAwsService
static INSPECTORInterfaceVpcEndpointAwsService
static IOT_COREInterfaceVpcEndpointAwsService
static IOT_CORE_DEVICE_ADVISORInterfaceVpcEndpointAwsService
static IOT_CORE_FOR_LORAWANInterfaceVpcEndpointAwsService
static IOT_GREENGRASSInterfaceVpcEndpointAwsService
static IOT_LORAWAN_CUPSInterfaceVpcEndpointAwsService
static IOT_LORAWAN_LNSInterfaceVpcEndpointAwsService
static IOT_ROBORUNNERInterfaceVpcEndpointAwsService
static IOT_SITEWISE_APIInterfaceVpcEndpointAwsService
static IOT_SITEWISE_DATAInterfaceVpcEndpointAwsService
static IOT_TWINMAKER_APIInterfaceVpcEndpointAwsService
static IOT_TWINMAKER_DATAInterfaceVpcEndpointAwsService
static KENDRAInterfaceVpcEndpointAwsService
static KENDRA_RANKINGInterfaceVpcEndpointAwsService
static KEYSPACESInterfaceVpcEndpointAwsService
static KEYSPACES_FIPSInterfaceVpcEndpointAwsService
static KINESIS_FIREHOSEInterfaceVpcEndpointAwsService
static KINESIS_STREAMSInterfaceVpcEndpointAwsService
static KMSInterfaceVpcEndpointAwsService
static KMS_FIPSInterfaceVpcEndpointAwsService
static LAKE_FORMATIONInterfaceVpcEndpointAwsService
static LAMBDAInterfaceVpcEndpointAwsService
static LEX_MODELSInterfaceVpcEndpointAwsService
static LEX_RUNTIMEInterfaceVpcEndpointAwsService
static LICENSE_MANAGERInterfaceVpcEndpointAwsService
static LICENSE_MANAGER_FIPSInterfaceVpcEndpointAwsService
static LOOKOUT_EQUIPMENTInterfaceVpcEndpointAwsService
static LOOKOUT_METRICSInterfaceVpcEndpointAwsService
static LOOKOUT_VISIONInterfaceVpcEndpointAwsService
static MACIEInterfaceVpcEndpointAwsService
static MAINFRAME_MODERNIZATIONInterfaceVpcEndpointAwsService
static MEMORY_DBInterfaceVpcEndpointAwsService
static MEMORY_DB_FIPSInterfaceVpcEndpointAwsService
static MIGRATIONHUB_ORCHESTRATORInterfaceVpcEndpointAwsService
static MIGRATIONHUB_REFACTOR_SPACESInterfaceVpcEndpointAwsService
static MIGRATIONHUB_STRATEGYInterfaceVpcEndpointAwsService
static NIMBLE_STUDIOInterfaceVpcEndpointAwsService
static OMICS_ANALYTICSInterfaceVpcEndpointAwsService
static OMICS_CONTROL_STORAGEInterfaceVpcEndpointAwsService
static OMICS_STORAGEInterfaceVpcEndpointAwsService
static OMICS_TAGSInterfaceVpcEndpointAwsService
static OMICS_WORKFLOWSInterfaceVpcEndpointAwsService
static PANORAMAInterfaceVpcEndpointAwsService
static PINPOINTInterfaceVpcEndpointAwsService
static POLLYInterfaceVpcEndpointAwsService
static PRIVATE_5GInterfaceVpcEndpointAwsService
static PRIVATE_CERTIFICATE_AUTHORITYInterfaceVpcEndpointAwsService
static PROMETHEUSInterfaceVpcEndpointAwsService
static PROMETHEUS_WORKSPACESInterfaceVpcEndpointAwsService
static PROTONInterfaceVpcEndpointAwsService
static QLDBInterfaceVpcEndpointAwsService
static RDSInterfaceVpcEndpointAwsService
static RDS_DATAInterfaceVpcEndpointAwsService
static REDSHIFTInterfaceVpcEndpointAwsService
static REDSHIFT_DATAInterfaceVpcEndpointAwsService
static REDSHIFT_FIPSInterfaceVpcEndpointAwsService
static REKOGNITIONInterfaceVpcEndpointAwsService
static REKOGNITION_FIPSInterfaceVpcEndpointAwsService
static ROBOMAKERInterfaceVpcEndpointAwsService
static S3InterfaceVpcEndpointAwsService
static S3_MULTI_REGION_ACCESS_POINTSInterfaceVpcEndpointAwsService
static S3_OUTPOSTSInterfaceVpcEndpointAwsService
static SAGEMAKER_APIInterfaceVpcEndpointAwsService
static SAGEMAKER_FEATURESTORE_RUNTIMEInterfaceVpcEndpointAwsService
static SAGEMAKER_METRICSInterfaceVpcEndpointAwsService
static SAGEMAKER_NOTEBOOKInterfaceVpcEndpointAwsService
static SAGEMAKER_RUNTIMEInterfaceVpcEndpointAwsService
static SAGEMAKER_RUNTIME_FIPSInterfaceVpcEndpointAwsService
static SAGEMAKER_STUDIOInterfaceVpcEndpointAwsService
static SECRETS_MANAGERInterfaceVpcEndpointAwsService
static SECURITYHUBInterfaceVpcEndpointAwsService
static SERVER_MIGRATION_SERVICEInterfaceVpcEndpointAwsService
static SERVER_MIGRATION_SERVICE_AWSCONNECTORInterfaceVpcEndpointAwsService
static SERVER_MIGRATION_SERVICE_FIPSInterfaceVpcEndpointAwsService
static SERVICE_CATALOGInterfaceVpcEndpointAwsService
static SERVICE_CATALOG_APPREGISTRYInterfaceVpcEndpointAwsService
static SESInterfaceVpcEndpointAwsService
static SNOW_DEVICE_MANAGEMENTInterfaceVpcEndpointAwsService
static SNSInterfaceVpcEndpointAwsService
static SQSInterfaceVpcEndpointAwsService
static SSMInterfaceVpcEndpointAwsService
static SSM_CONTACTSInterfaceVpcEndpointAwsService
static SSM_INCIDENTSInterfaceVpcEndpointAwsService
static SSM_MESSAGESInterfaceVpcEndpointAwsService
static STEP_FUNCTIONSInterfaceVpcEndpointAwsService
static STEP_FUNCTIONS_SYNCInterfaceVpcEndpointAwsService
static STORAGE_GATEWAYInterfaceVpcEndpointAwsService
static STSInterfaceVpcEndpointAwsService
static TEXTRACTInterfaceVpcEndpointAwsService
static TEXTRACT_FIPSInterfaceVpcEndpointAwsService
static TRANSCRIBEInterfaceVpcEndpointAwsService
static TRANSCRIBE_STREAMINGInterfaceVpcEndpointAwsService
static TRANSFERInterfaceVpcEndpointAwsService
static TRANSFER_SERVERInterfaceVpcEndpointAwsService
static TRANSLATEInterfaceVpcEndpointAwsService
static WORKSPACESInterfaceVpcEndpointAwsService
static XRAYInterfaceVpcEndpointAwsService

name

Type: string

The name of the service.

e.g. com.amazonaws.us-east-1.ecs


port

Type: number

The port of the service.


shortName

Type: string

The short name of the service.

e.g. ecs


privateDnsDefault?

Type: boolean (optional)

Whether Private DNS is supported by default.


static ACCESS_ANALYZER

Type: InterfaceVpcEndpointAwsService


static ACCOUNT_MANAGEMENT

Type: InterfaceVpcEndpointAwsService


static AIRFLOW_API

Type: InterfaceVpcEndpointAwsService


static AIRFLOW_ENV

Type: InterfaceVpcEndpointAwsService


static AIRFLOW_OPS

Type: InterfaceVpcEndpointAwsService


static APIGATEWAY

Type: InterfaceVpcEndpointAwsService


static APPLICATION_AUTOSCALING

Type: InterfaceVpcEndpointAwsService


static APPLICATION_MIGRATION_SERVICE

Type: InterfaceVpcEndpointAwsService


static APPSTREAM_API

Type: InterfaceVpcEndpointAwsService


static APPSTREAM_STREAMING

Type: InterfaceVpcEndpointAwsService


static APP_MESH

Type: InterfaceVpcEndpointAwsService


static APP_RUNNER

Type: InterfaceVpcEndpointAwsService


static APP_RUNNER_REQUESTS

Type: InterfaceVpcEndpointAwsService


static APP_SYNC

Type: InterfaceVpcEndpointAwsService


static ATHENA

Type: InterfaceVpcEndpointAwsService


static AUDIT_MANAGER

Type: InterfaceVpcEndpointAwsService


static AUTOSCALING

Type: InterfaceVpcEndpointAwsService


static AUTOSCALING_PLANS

Type: InterfaceVpcEndpointAwsService


static BACKUP

Type: InterfaceVpcEndpointAwsService


static BACKUP_GATEWAY

Type: InterfaceVpcEndpointAwsService


static BATCH

Type: InterfaceVpcEndpointAwsService


static BILLING_CONDUCTOR

Type: InterfaceVpcEndpointAwsService


static BRAKET

Type: InterfaceVpcEndpointAwsService


static CLOUDFORMATION

Type: InterfaceVpcEndpointAwsService


static CLOUDHSM

Type: InterfaceVpcEndpointAwsService


static CLOUDTRAIL

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_EVENTS

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_EVIDENTLY

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_EVIDENTLY_DATAPLANE

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_LOGS

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_MONITORING

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_RUM

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_RUM_DATAPLANE

Type: InterfaceVpcEndpointAwsService


static CLOUDWATCH_SYNTHETICS

Type: InterfaceVpcEndpointAwsService


static CLOUD_CONTROL_API

Type: InterfaceVpcEndpointAwsService


static CLOUD_CONTROL_API_FIPS

Type: InterfaceVpcEndpointAwsService


static CLOUD_DIRECTORY

Type: InterfaceVpcEndpointAwsService


static CODEARTIFACT_API

Type: InterfaceVpcEndpointAwsService


static CODEARTIFACT_REPOSITORIES

Type: InterfaceVpcEndpointAwsService


static CODEBUILD

Type: InterfaceVpcEndpointAwsService


static CODEBUILD_FIPS

Type: InterfaceVpcEndpointAwsService


static CODECOMMIT

Type: InterfaceVpcEndpointAwsService


static CODECOMMIT_FIPS

Type: InterfaceVpcEndpointAwsService


static CODECOMMIT_GIT

Type: InterfaceVpcEndpointAwsService


static CODECOMMIT_GIT_FIPS

Type: InterfaceVpcEndpointAwsService


static CODEDEPLOY

Type: InterfaceVpcEndpointAwsService


static CODEDEPLOY_COMMANDS_SECURE

Type: InterfaceVpcEndpointAwsService


static CODEGURU_PROFILER

Type: InterfaceVpcEndpointAwsService


static CODEGURU_REVIEWER

Type: InterfaceVpcEndpointAwsService


static CODEPIPELINE

Type: InterfaceVpcEndpointAwsService


static CODESTAR_CONNECTIONS

Type: InterfaceVpcEndpointAwsService


static COMPREHEND

Type: InterfaceVpcEndpointAwsService


static COMPREHEND_MEDICAL

Type: InterfaceVpcEndpointAwsService


static CONFIG

Type: InterfaceVpcEndpointAwsService


static CONNECT_APP_INTEGRATIONS

Type: InterfaceVpcEndpointAwsService


static CONNECT_CASES

Type: InterfaceVpcEndpointAwsService


static CONNECT_CONNECT_CAMPAIGNS

Type: InterfaceVpcEndpointAwsService


static CONNECT_PROFILE

Type: InterfaceVpcEndpointAwsService


static CONNECT_VOICEID

Type: InterfaceVpcEndpointAwsService


static CONNECT_WISDOM

Type: InterfaceVpcEndpointAwsService


static DATABASE_MIGRATION_SERVICE

Type: InterfaceVpcEndpointAwsService


static DATABASE_MIGRATION_SERVICE_FIPS

Type: InterfaceVpcEndpointAwsService


static DATASYNC

Type: InterfaceVpcEndpointAwsService


static DATA_EXCHANGE

Type: InterfaceVpcEndpointAwsService


static DEVOPS_GURU

Type: InterfaceVpcEndpointAwsService


static EBS_DIRECT

Type: InterfaceVpcEndpointAwsService


static EC2

Type: InterfaceVpcEndpointAwsService


static EC2_MESSAGES

Type: InterfaceVpcEndpointAwsService


static ECR

Type: InterfaceVpcEndpointAwsService


static ECR_DOCKER

Type: InterfaceVpcEndpointAwsService


static ECS

Type: InterfaceVpcEndpointAwsService


static ECS_AGENT

Type: InterfaceVpcEndpointAwsService


static ECS_TELEMETRY

Type: InterfaceVpcEndpointAwsService


static EKS

Type: InterfaceVpcEndpointAwsService


static ELASTICACHE

Type: InterfaceVpcEndpointAwsService


static ELASTICACHE_FIPS

Type: InterfaceVpcEndpointAwsService


static ELASTIC_BEANSTALK

Type: InterfaceVpcEndpointAwsService


static ELASTIC_BEANSTALK_HEALTH

Type: InterfaceVpcEndpointAwsService


static ELASTIC_DISASTER_RECOVERY

Type: InterfaceVpcEndpointAwsService


static ELASTIC_FILESYSTEM

Type: InterfaceVpcEndpointAwsService


static ELASTIC_FILESYSTEM_FIPS

Type: InterfaceVpcEndpointAwsService


static ELASTIC_INFERENCE_RUNTIME

Type: InterfaceVpcEndpointAwsService


static ELASTIC_LOAD_BALANCING

Type: InterfaceVpcEndpointAwsService


static EMAIL_SMTP

Type: InterfaceVpcEndpointAwsService


static EMR

Type: InterfaceVpcEndpointAwsService


static EMR_EKS

Type: InterfaceVpcEndpointAwsService


static EMR_SERVERLESS

Type: InterfaceVpcEndpointAwsService


static EVENTBRIDGE

Type: InterfaceVpcEndpointAwsService


static FAULT_INJECTION_SIMULATOR

Type: InterfaceVpcEndpointAwsService


static FINSPACE

Type: InterfaceVpcEndpointAwsService


static FINSPACE_API

Type: InterfaceVpcEndpointAwsService


static FORECAST

Type: InterfaceVpcEndpointAwsService


static FORECAST_FIPS

Type: InterfaceVpcEndpointAwsService


static FORECAST_QUERY

Type: InterfaceVpcEndpointAwsService


static FORECAST_QUERY_FIPS

Type: InterfaceVpcEndpointAwsService


static FRAUD_DETECTOR

Type: InterfaceVpcEndpointAwsService


static FSX

Type: InterfaceVpcEndpointAwsService


static FSX_FIPS

Type: InterfaceVpcEndpointAwsService


static GLUE

Type: InterfaceVpcEndpointAwsService


static GLUE_DATABREW

Type: InterfaceVpcEndpointAwsService


static GRAFANA

Type: InterfaceVpcEndpointAwsService


static GRAFANA_WORKSPACE

Type: InterfaceVpcEndpointAwsService


static GROUNDSTATION

Type: InterfaceVpcEndpointAwsService


static HEALTHLAKE

Type: InterfaceVpcEndpointAwsService


static IAM_IDENTITY_CENTER

Type: InterfaceVpcEndpointAwsService


static IAM_ROLES_ANYWHERE

Type: InterfaceVpcEndpointAwsService


static IMAGE_BUILDER

Type: InterfaceVpcEndpointAwsService


static INSPECTOR

Type: InterfaceVpcEndpointAwsService


static IOT_CORE

Type: InterfaceVpcEndpointAwsService


static IOT_CORE_DEVICE_ADVISOR

Type: InterfaceVpcEndpointAwsService


static IOT_CORE_FOR_LORAWAN

Type: InterfaceVpcEndpointAwsService


static IOT_GREENGRASS

Type: InterfaceVpcEndpointAwsService


static IOT_LORAWAN_CUPS

Type: InterfaceVpcEndpointAwsService


static IOT_LORAWAN_LNS

Type: InterfaceVpcEndpointAwsService


static IOT_ROBORUNNER

Type: InterfaceVpcEndpointAwsService


static IOT_SITEWISE_API

Type: InterfaceVpcEndpointAwsService


static IOT_SITEWISE_DATA

Type: InterfaceVpcEndpointAwsService


static IOT_TWINMAKER_API

Type: InterfaceVpcEndpointAwsService


static IOT_TWINMAKER_DATA

Type: InterfaceVpcEndpointAwsService


static KENDRA

Type: InterfaceVpcEndpointAwsService


static KENDRA_RANKING

Type: InterfaceVpcEndpointAwsService


static KEYSPACES

Type: InterfaceVpcEndpointAwsService


static KEYSPACES_FIPS

Type: InterfaceVpcEndpointAwsService


static KINESIS_FIREHOSE

Type: InterfaceVpcEndpointAwsService


static KINESIS_STREAMS

Type: InterfaceVpcEndpointAwsService


static KMS

Type: InterfaceVpcEndpointAwsService


static KMS_FIPS

Type: InterfaceVpcEndpointAwsService


static LAKE_FORMATION

Type: InterfaceVpcEndpointAwsService


static LAMBDA

Type: InterfaceVpcEndpointAwsService


static LEX_MODELS

Type: InterfaceVpcEndpointAwsService


static LEX_RUNTIME

Type: InterfaceVpcEndpointAwsService


static LICENSE_MANAGER

Type: InterfaceVpcEndpointAwsService


static LICENSE_MANAGER_FIPS

Type: InterfaceVpcEndpointAwsService


static LOOKOUT_EQUIPMENT

Type: InterfaceVpcEndpointAwsService


static LOOKOUT_METRICS

Type: InterfaceVpcEndpointAwsService


static LOOKOUT_VISION

Type: InterfaceVpcEndpointAwsService


static MACIE

Type: InterfaceVpcEndpointAwsService


static MAINFRAME_MODERNIZATION

Type: InterfaceVpcEndpointAwsService


static MEMORY_DB

Type: InterfaceVpcEndpointAwsService


static MEMORY_DB_FIPS

Type: InterfaceVpcEndpointAwsService


static MIGRATIONHUB_ORCHESTRATOR

Type: InterfaceVpcEndpointAwsService


static MIGRATIONHUB_REFACTOR_SPACES

Type: InterfaceVpcEndpointAwsService


static MIGRATIONHUB_STRATEGY

Type: InterfaceVpcEndpointAwsService


static NIMBLE_STUDIO

Type: InterfaceVpcEndpointAwsService


static OMICS_ANALYTICS

Type: InterfaceVpcEndpointAwsService


static OMICS_CONTROL_STORAGE

Type: InterfaceVpcEndpointAwsService


static OMICS_STORAGE

Type: InterfaceVpcEndpointAwsService


static OMICS_TAGS

Type: InterfaceVpcEndpointAwsService


static OMICS_WORKFLOWS

Type: InterfaceVpcEndpointAwsService


static PANORAMA

Type: InterfaceVpcEndpointAwsService


static PINPOINT

Type: InterfaceVpcEndpointAwsService


static POLLY

Type: InterfaceVpcEndpointAwsService


static PRIVATE_5G

Type: InterfaceVpcEndpointAwsService


static PRIVATE_CERTIFICATE_AUTHORITY

Type: InterfaceVpcEndpointAwsService


static PROMETHEUS

Type: InterfaceVpcEndpointAwsService


static PROMETHEUS_WORKSPACES

Type: InterfaceVpcEndpointAwsService


static PROTON

Type: InterfaceVpcEndpointAwsService


static QLDB

Type: InterfaceVpcEndpointAwsService


static RDS

Type: InterfaceVpcEndpointAwsService


static RDS_DATA

Type: InterfaceVpcEndpointAwsService


static REDSHIFT

Type: InterfaceVpcEndpointAwsService


static REDSHIFT_DATA

Type: InterfaceVpcEndpointAwsService


static REDSHIFT_FIPS

Type: InterfaceVpcEndpointAwsService


static REKOGNITION

Type: InterfaceVpcEndpointAwsService


static REKOGNITION_FIPS

Type: InterfaceVpcEndpointAwsService


static ROBOMAKER

Type: InterfaceVpcEndpointAwsService


static S3

Type: InterfaceVpcEndpointAwsService


static S3_MULTI_REGION_ACCESS_POINTS

Type: InterfaceVpcEndpointAwsService


static S3_OUTPOSTS

Type: InterfaceVpcEndpointAwsService


static SAGEMAKER_API

Type: InterfaceVpcEndpointAwsService


static SAGEMAKER_FEATURESTORE_RUNTIME

Type: InterfaceVpcEndpointAwsService


static SAGEMAKER_METRICS

Type: InterfaceVpcEndpointAwsService


static SAGEMAKER_NOTEBOOK

Type: InterfaceVpcEndpointAwsService


static SAGEMAKER_RUNTIME

Type: InterfaceVpcEndpointAwsService


static SAGEMAKER_RUNTIME_FIPS

Type: InterfaceVpcEndpointAwsService


static SAGEMAKER_STUDIO

Type: InterfaceVpcEndpointAwsService


static SECRETS_MANAGER

Type: InterfaceVpcEndpointAwsService


static SECURITYHUB

Type: InterfaceVpcEndpointAwsService


static SERVER_MIGRATION_SERVICE

Type: InterfaceVpcEndpointAwsService


static SERVER_MIGRATION_SERVICE_AWSCONNECTOR

Type: InterfaceVpcEndpointAwsService


static SERVER_MIGRATION_SERVICE_FIPS

Type: InterfaceVpcEndpointAwsService


static SERVICE_CATALOG

Type: InterfaceVpcEndpointAwsService


static SERVICE_CATALOG_APPREGISTRY

Type: InterfaceVpcEndpointAwsService


static SES

Type: InterfaceVpcEndpointAwsService


static SNOW_DEVICE_MANAGEMENT

Type: InterfaceVpcEndpointAwsService


static SNS

Type: InterfaceVpcEndpointAwsService


static SQS

Type: InterfaceVpcEndpointAwsService


static SSM

Type: InterfaceVpcEndpointAwsService


static SSM_CONTACTS

Type: InterfaceVpcEndpointAwsService


static SSM_INCIDENTS

Type: InterfaceVpcEndpointAwsService


static SSM_MESSAGES

Type: InterfaceVpcEndpointAwsService


static STEP_FUNCTIONS

Type: InterfaceVpcEndpointAwsService


static STEP_FUNCTIONS_SYNC

Type: InterfaceVpcEndpointAwsService


static STORAGE_GATEWAY

Type: InterfaceVpcEndpointAwsService


static STS

Type: InterfaceVpcEndpointAwsService


static TEXTRACT

Type: InterfaceVpcEndpointAwsService


static TEXTRACT_FIPS

Type: InterfaceVpcEndpointAwsService


static TRANSCRIBE

Type: InterfaceVpcEndpointAwsService


static TRANSCRIBE_STREAMING

Type: InterfaceVpcEndpointAwsService


static TRANSFER

Type: InterfaceVpcEndpointAwsService


static TRANSFER_SERVER

Type: InterfaceVpcEndpointAwsService


static TRANSLATE

Type: InterfaceVpcEndpointAwsService


static WORKSPACES

Type: InterfaceVpcEndpointAwsService


static XRAY

Type: InterfaceVpcEndpointAwsService