interface AwsGroundStationAgentEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroup_AwsGroundStationAgentEndpointProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroup » AwsGroundStationAgentEndpointProperty |
Information about AwsGroundStationAgentEndpoint.
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-lib';
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 | The status of AgentEndpoint. |
| audit | string | The results of the audit. |
| egress | IResolvable | Connection | The egress address of AgentEndpoint. |
| ingress | IResolvable | Ranged | The ingress address of AgentEndpoint. |
| name? | string | Name string associated with AgentEndpoint. |
agentStatus?
Type:
string
(optional)
The status of AgentEndpoint.
auditResults?
Type:
string
(optional)
The results of the audit.
egressAddress?
Type:
IResolvable | Connection
(optional)
The egress address of AgentEndpoint.
ingressAddress?
Type:
IResolvable | Ranged
(optional)
The ingress address of AgentEndpoint.
name?
Type:
string
(optional)
Name string associated with AgentEndpoint.
Used as a human-readable identifier for AgentEndpoint.

.NET
Go
Java
Python
TypeScript