interface AwsGroundStationAgentEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GroundStation.Mixins.CfnDataflowEndpointGroupPropsMixin.AwsGroundStationAgentEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgroundstation/mixins#CfnDataflowEndpointGroupPropsMixin_AwsGroundStationAgentEndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.groundstation.mixins.CfnDataflowEndpointGroupPropsMixin.AwsGroundStationAgentEndpointProperty |
Python | aws_cdk.mixins_preview.aws_groundstation.mixins.CfnDataflowEndpointGroupPropsMixin.AwsGroundStationAgentEndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_groundstation » mixins » CfnDataflowEndpointGroupPropsMixin » 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 { mixins as groundstation_mixins } from '@aws-cdk/mixins-preview/aws-groundstation';
const awsGroundStationAgentEndpointProperty: groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.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