interface AwsGroundStationAgentEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty |
TypeScript | @aws-cdk/aws-groundstation » CfnDataflowEndpointGroup » AwsGroundStationAgentEndpointProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as groundstation from '@aws-cdk/aws-groundstation';
const awsGroundStationAgentEndpointProperty: groundstation.CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty = {
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',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AgentStatus. |
| audit | string | CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AuditResults. |
| egress | IResolvable | Connection | CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.EgressAddress. |
| ingress | IResolvable | Ranged | CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.IngressAddress. |
| name? | string | CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.Name. |
agentStatus?
Type:
string
(optional)
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AgentStatus.
auditResults?
Type:
string
(optional)
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.AuditResults.
egressAddress?
Type:
IResolvable | Connection
(optional)
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.EgressAddress.
ingressAddress?
Type:
IResolvable | Ranged
(optional)
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.IngressAddress.
name?
Type:
string
(optional)
CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty.Name.

.NET
Java
Python
TypeScript