interface DataflowEndpointGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GroundStation.DataflowEndpointGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgroundstation#DataflowEndpointGroupReference |
Java | software.amazon.awscdk.interfaces.groundstation.DataflowEndpointGroupReference |
Python | aws_cdk.interfaces.aws_groundstation.DataflowEndpointGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_groundstation » DataflowEndpointGroupReference |
A reference to a DataflowEndpointGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as interfaces_aws_groundstation } from 'aws-cdk-lib/interfaces';
const dataflowEndpointGroupReference: interfaces_aws_groundstation.DataflowEndpointGroupReference = {
dataflowEndpointGroupArn: 'dataflowEndpointGroupArn',
dataflowEndpointGroupId: 'dataflowEndpointGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dataflow | string | The ARN of the DataflowEndpointGroup resource. |
| dataflow | string | The Id of the DataflowEndpointGroup resource. |
dataflowEndpointGroupArn
Type:
string
The ARN of the DataflowEndpointGroup resource.
dataflowEndpointGroupId
Type:
string
The Id of the DataflowEndpointGroup resource.

.NET
Go
Java
Python
TypeScript