interface CfnDataflowEndpointGroupV2Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroupV2Props |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroupV2Props |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2Props |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroupV2Props |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroupV2Props |
Properties for defining a CfnDataflowEndpointGroupV2.
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 cfnDataflowEndpointGroupV2Props: groundstation.CfnDataflowEndpointGroupV2Props = {
contactPostPassDurationSeconds: 123,
contactPrePassDurationSeconds: 123,
endpoints: [{
downlinkAwsGroundStationAgentEndpoint: {
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
// the properties below are optional
mtu: 123,
},
egressAddressAndPort: {
socketAddress: {
name: 'name',
port: 123,
},
// the properties below are optional
mtu: 123,
},
},
},
name: 'name',
},
uplinkAwsGroundStationAgentEndpoint: {
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
// the properties below are optional
mtu: 123,
},
ingressAddressAndPort: {
socketAddress: {
name: 'name',
port: 123,
},
// the properties below are optional
mtu: 123,
},
},
},
name: 'name',
},
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | number | Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. |
| contact | number | Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. |
| endpoints? | IResolvable | (IResolvable | Create)[] | List of endpoints for the dataflow endpoint group. |
| tags? | Cfn[] | Tags assigned to a resource. |
contactPostPassDurationSeconds?
Type:
number
(optional)
Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state.
contactPrePassDurationSeconds?
Type:
number
(optional)
Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state.
endpoints?
Type:
IResolvable | (IResolvable | Create)[]
(optional)
List of endpoints for the dataflow endpoint group.
tags?
Type:
Cfn[]
(optional)
Tags assigned to a resource.

.NET
Go
Java
Python
TypeScript