aws-cdk-lib.aws_groundstation.CfnDataflowEndpointGroup.EndpointDetailsProperty

interface EndpointDetailsProperty

LanguageType name
.NETAmazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroup.EndpointDetailsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroup_EndpointDetailsProperty
Javasoftware.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroup.EndpointDetailsProperty
Pythonaws_cdk.aws_groundstation.CfnDataflowEndpointGroup.EndpointDetailsProperty
TypeScript aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroup » EndpointDetailsProperty

The security details and endpoint information.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as groundstation } from 'aws-cdk-lib';
const endpointDetailsProperty: groundstation.CfnDataflowEndpointGroup.EndpointDetailsProperty = {
  awsGroundStationAgentEndpoint: {
    agentStatus: 'agentStatus',
    auditResults: 'auditResults',
    egressAddress: {
      mtu: 123,
      socketAddress: {
        name: 'name',
        port: 123,
      },
    },
    ingressAddress: {
      mtu: 123,
      socketAddress: {
        name: 'name',
        portRange: {
          maximum: 123,
          minimum: 123,
        },
      },
    },
    name: 'name',
  },
  endpoint: {
    address: {
      name: 'name',
      port: 123,
    },
    mtu: 123,
    name: 'name',
  },
  securityDetails: {
    roleArn: 'roleArn',
    securityGroupIds: ['securityGroupIds'],
    subnetIds: ['subnetIds'],
  },
};

Properties

NameTypeDescription
awsGroundStationAgentEndpoint?IResolvable | AwsGroundStationAgentEndpointPropertyCfnDataflowEndpointGroup.EndpointDetailsProperty.AwsGroundStationAgentEndpoint.
endpoint?IResolvable | DataflowEndpointPropertyInformation about the endpoint such as name and the endpoint address.
securityDetails?IResolvable | SecurityDetailsPropertyThe role ARN, and IDs for security groups and subnets.

awsGroundStationAgentEndpoint?

Type: IResolvable | AwsGroundStationAgentEndpointProperty (optional)

CfnDataflowEndpointGroup.EndpointDetailsProperty.AwsGroundStationAgentEndpoint.


endpoint?

Type: IResolvable | DataflowEndpointProperty (optional)

Information about the endpoint such as name and the endpoint address.


securityDetails?

Type: IResolvable | SecurityDetailsProperty (optional)

The role ARN, and IDs for security groups and subnets.