CfnDataflowEndpointGroupV2PropsMixin

class aws_cdk.mixins_preview.aws_groundstation.mixins.CfnDataflowEndpointGroupV2PropsMixin(props, *, strategy=None)

Bases: Mixin

Creates a DataflowEndpoint group containing the specified list of Ground Station Agent based endpoints.

The name field in each endpoint is used in your mission profile DataflowEndpointConfig to specify which endpoints to use during a contact.

When a contact uses multiple DataflowEndpointConfig objects, each Config must match a DataflowEndpoint in the same group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html

CloudformationResource:

AWS::GroundStation::DataflowEndpointGroupV2

Mixin:

true

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

cfn_dataflow_endpoint_group_v2_props_mixin = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin(groundstation_mixins.CfnDataflowEndpointGroupV2MixinProps(
    contact_post_pass_duration_seconds=123,
    contact_pre_pass_duration_seconds=123,
    endpoints=[groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.CreateEndpointDetailsProperty(
        downlink_aws_ground_station_agent_endpoint=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty(
            dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty(
                agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(
                    agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                        mtu=123,
                        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                            name="name",
                            port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                                maximum=123,
                                minimum=123
                            )
                        )
                    ),
                    egress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                        mtu=123,
                        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                            name="name",
                            port=123
                        )
                    )
                )
            ),
            name="name"
        ),
        uplink_aws_ground_station_agent_endpoint=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointProperty(
            dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty(
                agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(
                    agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                        mtu=123,
                        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                            name="name",
                            port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                                maximum=123,
                                minimum=123
                            )
                        )
                    ),
                    ingress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                        mtu=123,
                        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                            name="name",
                            port=123
                        )
                    )
                )
            ),
            name="name"
        )
    )],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::GroundStation::DataflowEndpointGroupV2.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['contactPostPassDurationSeconds', 'contactPrePassDurationSeconds', 'endpoints', 'tags']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

ConnectionDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(*, mtu=None, socket_address=None)

Bases: object

Egress address of AgentEndpoint with an optional mtu.

Parameters:
  • mtu (Union[int, float, None]) – Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

  • socket_address (Union[IResolvable, SocketAddressProperty, Dict[str, Any], None]) – A socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

connection_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
    mtu=123,
    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
        name="name",
        port=123
    )
)

Attributes

mtu

Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-connectiondetails-mtu

socket_address

A socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-connectiondetails-socketaddress

CreateEndpointDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.CreateEndpointDetailsProperty(*, downlink_aws_ground_station_agent_endpoint=None, uplink_aws_ground_station_agent_endpoint=None)

Bases: object

Endpoint definition used for creating a dataflow endpoint.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

create_endpoint_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.CreateEndpointDetailsProperty(
    downlink_aws_ground_station_agent_endpoint=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty(
        dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty(
            agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(
                agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                        name="name",
                        port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                            maximum=123,
                            minimum=123
                        )
                    )
                ),
                egress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                        name="name",
                        port=123
                    )
                )
            )
        ),
        name="name"
    ),
    uplink_aws_ground_station_agent_endpoint=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointProperty(
        dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty(
            agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(
                agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                        name="name",
                        port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                            maximum=123,
                            minimum=123
                        )
                    )
                ),
                ingress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                        name="name",
                        port=123
                    )
                )
            )
        ),
        name="name"
    )
)

Attributes

Definition for a downlink agent endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-createendpointdetails-downlinkawsgroundstationagentendpoint

Definition for an uplink agent endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-createendpointdetails-uplinkawsgroundstationagentendpoint

DownlinkAwsGroundStationAgentEndpointDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty(*, agent_status=None, audit_results=None, dataflow_details=None, name=None)

Bases: object

Details for a downlink agent endpoint.

Parameters:
  • agent_status (Optional[str]) – Status of the agent associated with the downlink dataflow endpoint.

  • audit_results (Optional[str]) – Health audit results for the downlink dataflow endpoint.

  • dataflow_details (Union[IResolvable, DownlinkDataflowDetailsProperty, Dict[str, Any], None]) – Dataflow details for the downlink endpoint.

  • name (Optional[str]) – Downlink dataflow endpoint name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

downlink_aws_ground_station_agent_endpoint_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty(
    agent_status="agentStatus",
    audit_results="auditResults",
    dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty(
        agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(
            agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                    name="name",
                    port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                        maximum=123,
                        minimum=123
                    )
                )
            ),
            egress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                    name="name",
                    port=123
                )
            )
        )
    ),
    name="name"
)

Attributes

agent_status

Status of the agent associated with the downlink dataflow endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails-agentstatus

audit_results

Health audit results for the downlink dataflow endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails-auditresults

dataflow_details

Dataflow details for the downlink endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails-dataflowdetails

name

Downlink dataflow endpoint name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails-name

DownlinkAwsGroundStationAgentEndpointProperty

class CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty(*, dataflow_details=None, name=None)

Bases: object

Definition for a downlink agent endpoint.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

downlink_aws_ground_station_agent_endpoint_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointProperty(
    dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty(
        agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(
            agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                    name="name",
                    port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                        maximum=123,
                        minimum=123
                    )
                )
            ),
            egress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                    name="name",
                    port=123
                )
            )
        )
    ),
    name="name"
)

Attributes

dataflow_details

Dataflow details for the downlink endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint-dataflowdetails

name

Downlink dataflow endpoint name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint-name

DownlinkConnectionDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(*, agent_ip_and_port_address=None, egress_address_and_port=None)

Bases: object

Connection details for Ground Station to Agent and Agent to customer.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

downlink_connection_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(
    agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
        mtu=123,
        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
            name="name",
            port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                maximum=123,
                minimum=123
            )
        )
    ),
    egress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
        mtu=123,
        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
            name="name",
            port=123
        )
    )
)

Attributes

agent_ip_and_port_address

Agent IP and port address for the downlink connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails-agentipandportaddress

egress_address_and_port

Egress address and port for the downlink connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails-egressaddressandport

DownlinkDataflowDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty(*, agent_connection_details=None)

Bases: object

Dataflow details for a downlink endpoint.

Parameters:

agent_connection_details (Union[IResolvable, DownlinkConnectionDetailsProperty, Dict[str, Any], None]) – Downlink connection details for customer to Agent and Agent to Ground Station.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

downlink_dataflow_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty(
    agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(
        agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
            mtu=123,
            socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                name="name",
                port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                    maximum=123,
                    minimum=123
                )
            )
        ),
        egress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
            mtu=123,
            socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                name="name",
                port=123
            )
        )
    )
)

Attributes

agent_connection_details

Downlink connection details for customer to Agent and Agent to Ground Station.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails-agentconnectiondetails

EndpointDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.EndpointDetailsProperty(*, downlink_aws_ground_station_agent_endpoint=None, uplink_aws_ground_station_agent_endpoint=None)

Bases: object

Information about the endpoint details.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-endpointdetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

endpoint_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.EndpointDetailsProperty(
    downlink_aws_ground_station_agent_endpoint=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkAwsGroundStationAgentEndpointDetailsProperty(
        agent_status="agentStatus",
        audit_results="auditResults",
        dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkDataflowDetailsProperty(
            agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.DownlinkConnectionDetailsProperty(
                agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                        name="name",
                        port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                            maximum=123,
                            minimum=123
                        )
                    )
                ),
                egress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                        name="name",
                        port=123
                    )
                )
            )
        ),
        name="name"
    ),
    uplink_aws_ground_station_agent_endpoint=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointDetailsProperty(
        agent_status="agentStatus",
        audit_results="auditResults",
        dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty(
            agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(
                agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                        name="name",
                        port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                            maximum=123,
                            minimum=123
                        )
                    )
                ),
                ingress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                    mtu=123,
                    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                        name="name",
                        port=123
                    )
                )
            )
        ),
        name="name"
    )
)

Attributes

Definition for a downlink agent endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-endpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-endpointdetails-downlinkawsgroundstationagentendpoint

Definition for an uplink agent endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-endpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-endpointdetails-uplinkawsgroundstationagentendpoint

IntegerRangeProperty

class CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(*, maximum=None, minimum=None)

Bases: object

An integer range that has a minimum and maximum value.

Parameters:
  • maximum (Union[int, float, None]) – A maximum value.

  • minimum (Union[int, float, None]) – A minimum value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-integerrange.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

integer_range_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
    maximum=123,
    minimum=123
)

Attributes

maximum

A maximum value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-integerrange.html#cfn-groundstation-dataflowendpointgroupv2-integerrange-maximum

minimum

A minimum value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-integerrange.html#cfn-groundstation-dataflowendpointgroupv2-integerrange-minimum

RangedConnectionDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(*, mtu=None, socket_address=None)

Bases: object

Ingress address of AgentEndpoint with a port range and an optional mtu.

Parameters:
  • mtu (Union[int, float, None]) – Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

  • socket_address (Union[IResolvable, RangedSocketAddressProperty, Dict[str, Any], None]) – A ranged socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

ranged_connection_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
    mtu=123,
    socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
        name="name",
        port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
            maximum=123,
            minimum=123
        )
    )
)

Attributes

mtu

Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-rangedconnectiondetails-mtu

socket_address

A ranged socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-rangedconnectiondetails-socketaddress

RangedSocketAddressProperty

class CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(*, name=None, port_range=None)

Bases: object

A socket address with a port range.

Parameters:
  • name (Optional[str]) – IPv4 socket address.

  • port_range (Union[IResolvable, IntegerRangeProperty, Dict[str, Any], None]) – Port range of a socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

ranged_socket_address_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
    name="name",
    port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
        maximum=123,
        minimum=123
    )
)

Attributes

name

IPv4 socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html#cfn-groundstation-dataflowendpointgroupv2-rangedsocketaddress-name

port_range

Port range of a socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html#cfn-groundstation-dataflowendpointgroupv2-rangedsocketaddress-portrange

SocketAddressProperty

class CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(*, name=None, port=None)

Bases: object

Information about the socket address.

Parameters:
  • name (Optional[str]) – Name of a socket address.

  • port (Union[int, float, None]) – Port of a socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

socket_address_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
    name="name",
    port=123
)

Attributes

name

Name of a socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html#cfn-groundstation-dataflowendpointgroupv2-socketaddress-name

port

Port of a socket address.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html#cfn-groundstation-dataflowendpointgroupv2-socketaddress-port

UplinkAwsGroundStationAgentEndpointDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointDetailsProperty(*, agent_status=None, audit_results=None, dataflow_details=None, name=None)

Bases: object

Details for an uplink agent endpoint.

Parameters:
  • agent_status (Optional[str]) – Status of the agent associated with the uplink dataflow endpoint.

  • audit_results (Optional[str]) – Health audit results for the uplink dataflow endpoint.

  • dataflow_details (Union[IResolvable, UplinkDataflowDetailsProperty, Dict[str, Any], None]) – Dataflow details for the uplink endpoint.

  • name (Optional[str]) – Uplink dataflow endpoint name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

uplink_aws_ground_station_agent_endpoint_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointDetailsProperty(
    agent_status="agentStatus",
    audit_results="auditResults",
    dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty(
        agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(
            agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                    name="name",
                    port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                        maximum=123,
                        minimum=123
                    )
                )
            ),
            ingress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                    name="name",
                    port=123
                )
            )
        )
    ),
    name="name"
)

Attributes

agent_status

Status of the agent associated with the uplink dataflow endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails-agentstatus

audit_results

Health audit results for the uplink dataflow endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails-auditresults

dataflow_details

Dataflow details for the uplink endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails-dataflowdetails

name

Uplink dataflow endpoint name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails-name

UplinkAwsGroundStationAgentEndpointProperty

class CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointProperty(*, dataflow_details=None, name=None)

Bases: object

Definition for an uplink agent endpoint.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

uplink_aws_ground_station_agent_endpoint_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkAwsGroundStationAgentEndpointProperty(
    dataflow_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty(
        agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(
            agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                    name="name",
                    port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                        maximum=123,
                        minimum=123
                    )
                )
            ),
            ingress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                    name="name",
                    port=123
                )
            )
        )
    ),
    name="name"
)

Attributes

dataflow_details

Dataflow details for the uplink endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint-dataflowdetails

name

Uplink dataflow endpoint name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint-name

UplinkConnectionDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(*, agent_ip_and_port_address=None, ingress_address_and_port=None)

Bases: object

Connection details for customer to Agent and Agent to Ground Station.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

uplink_connection_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(
    agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
        mtu=123,
        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
            name="name",
            port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                maximum=123,
                minimum=123
            )
        )
    ),
    ingress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
        mtu=123,
        socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
            name="name",
            port=123
        )
    )
)

Attributes

agent_ip_and_port_address

Agent IP and port address for the uplink connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails-agentipandportaddress

ingress_address_and_port

Ingress address and port for the uplink connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails-ingressaddressandport

UplinkDataflowDetailsProperty

class CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty(*, agent_connection_details=None)

Bases: object

Dataflow details for an uplink endpoint.

Parameters:

agent_connection_details (Union[IResolvable, UplinkConnectionDetailsProperty, Dict[str, Any], None]) – Uplink connection details for customer to Agent and Agent to Ground Station.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_groundstation import mixins as groundstation_mixins

uplink_dataflow_details_property = groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkDataflowDetailsProperty(
    agent_connection_details=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.UplinkConnectionDetailsProperty(
        agent_ip_and_port_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedConnectionDetailsProperty(
            mtu=123,
            socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.RangedSocketAddressProperty(
                name="name",
                port_range=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.IntegerRangeProperty(
                    maximum=123,
                    minimum=123
                )
            )
        ),
        ingress_address_and_port=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.ConnectionDetailsProperty(
            mtu=123,
            socket_address=groundstation_mixins.CfnDataflowEndpointGroupV2PropsMixin.SocketAddressProperty(
                name="name",
                port=123
            )
        )
    )
)

Attributes

agent_connection_details

Uplink connection details for customer to Agent and Agent to Ground Station.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails-agentconnectiondetails