interface DataflowEndpointConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnConfigPropsMixin.DataflowEndpointConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnConfigPropsMixin_DataflowEndpointConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnConfigPropsMixin.DataflowEndpointConfigProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnConfigPropsMixin.DataflowEndpointConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnConfigPropsMixin » DataflowEndpointConfigProperty |
Provides information to AWS Ground Station about which IP endpoints to use during a contact.
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 dataflowEndpointConfigProperty: groundstation_mixins.CfnConfigPropsMixin.DataflowEndpointConfigProperty = {
dataflowEndpointName: 'dataflowEndpointName',
dataflowEndpointRegion: 'dataflowEndpointRegion',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataflow | string | The name of the dataflow endpoint to use during contacts. |
| dataflow | string | The region of the dataflow endpoint to use during contacts. |
dataflowEndpointName?
Type:
string
(optional)
The name of the dataflow endpoint to use during contacts.
dataflowEndpointRegion?
Type:
string
(optional)
The region of the dataflow endpoint to use during contacts.
When omitted, Ground Station will use the region of the contact.

.NET
Go
Java
Python
TypeScript