interface CfnDataflowEndpointGroupV2MixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnDataflowEndpointGroupV2MixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnDataflowEndpointGroupV2MixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnDataflowEndpointGroupV2MixinProps |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnDataflowEndpointGroupV2MixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » CfnDataflowEndpointGroupV2MixinProps |
Properties for CfnDataflowEndpointGroupV2PropsMixin.
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/cfn-property-mixins';
const cfnDataflowEndpointGroupV2MixinProps: groundstation.CfnDataflowEndpointGroupV2MixinProps = {
contactPostPassDurationSeconds: 123,
contactPrePassDurationSeconds: 123,
endpoints: [{
downlinkAwsGroundStationAgentEndpoint: {
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
mtu: 123,
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
},
egressAddressAndPort: {
mtu: 123,
socketAddress: {
name: 'name',
port: 123,
},
},
},
},
name: 'name',
},
uplinkAwsGroundStationAgentEndpoint: {
dataflowDetails: {
agentConnectionDetails: {
agentIpAndPortAddress: {
mtu: 123,
socketAddress: {
name: 'name',
portRange: {
maximum: 123,
minimum: 123,
},
},
},
ingressAddressAndPort: {
mtu: 123,
socketAddress: {
name: 'name',
port: 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