interface DataflowEndpointConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GroundStation.CfnConfigPropsMixin.DataflowEndpointConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgroundstation#CfnConfigPropsMixin_DataflowEndpointConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.groundstation.CfnConfigPropsMixin.DataflowEndpointConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_groundstation.CfnConfigPropsMixin.DataflowEndpointConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_groundstation » 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 { aws_groundstation as groundstation } from '@aws-cdk/cfn-property-mixins';
const dataflowEndpointConfigProperty: groundstation.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