interface CfnDataflowEndpointGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnDataflowEndpointGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnDataflowEndpointGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnDataflowEndpointGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnDataflowEndpointGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnDataflowEndpointGroupMixinProps |
Properties for CfnDataflowEndpointGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as groundstation_mixins } from '@aws-cdk/mixins-preview/aws-groundstation';
const cfnDataflowEndpointGroupMixinProps: groundstation_mixins.CfnDataflowEndpointGroupMixinProps = {
contactPostPassDurationSeconds: 123,
contactPrePassDurationSeconds: 123,
endpointDetails: [{
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'],
},
}],
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. |
| endpoint | IResolvable | (IResolvable | Endpoint)[] | List of Endpoint Details, containing address and port for each endpoint. |
| 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.
A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the 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.
A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
endpointDetails?
Type:
IResolvable | (IResolvable | Endpoint)[]
(optional)
List of Endpoint Details, containing address and port for each endpoint.
All dataflow endpoints within a single dataflow endpoint group must be of the same type. You cannot mix AWS Ground Station Agent endpoints with Dataflow endpoints in the same group. If your use case requires both types of endpoints, you must create separate dataflow endpoint groups for each type.
tags?
Type:
Cfn[]
(optional)
Tags assigned to a resource.

.NET
Go
Java
Python
TypeScript