CfnVpcEndpointMixinProps
- class aws_cdk.cfn_property_mixins.aws_opensearchserverless.CfnVpcEndpointMixinProps(*, name=None, security_group_ids=None, subnet_ids=None, vpc_id=None)
Bases:
objectProperties for CfnVpcEndpointPropsMixin.
- Parameters:
name (
Optional[str]) – The name of the endpoint.security_group_ids (
Optional[Sequence[Union[str,ISecurityGroupRef]]]) – The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.subnet_ids (
Optional[Sequence[str]]) – The ID of the subnets from which you access OpenSearch Serverless.vpc_id (
Optional[str]) – The ID of the VPC from which you access OpenSearch Serverless.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_opensearchserverless as opensearchserverless cfn_vpc_endpoint_mixin_props = opensearchserverless.CfnVpcEndpointMixinProps( name="name", security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], vpc_id="vpcId" )
Attributes
- name
The name of the endpoint.
- security_group_ids
The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
- subnet_ids
The ID of the subnets from which you access OpenSearch Serverless.
- vpc_id
The ID of the VPC from which you access OpenSearch Serverless.