CfnDataflowEndpointGroupMixinProps

class aws_cdk.mixins_preview.aws_groundstation.mixins.CfnDataflowEndpointGroupMixinProps(*, contact_post_pass_duration_seconds=None, contact_pre_pass_duration_seconds=None, endpoint_details=None, tags=None)

Bases: object

Properties for CfnDataflowEndpointGroupPropsMixin.

Parameters:
  • contact_post_pass_duration_seconds (Union[int, float, None]) – Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.

  • contact_pre_pass_duration_seconds (Union[int, float, None]) – Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.

  • endpoint_details (Union[IResolvable, Sequence[Union[IResolvable, EndpointDetailsProperty, Dict[str, Any]]], None]) – List of Endpoint Details, containing address and port for each endpoint. All dataflow endpoints within a single dataflow endpoint group must be of the same type. You cannot mix AWS Ground Station Agent endpoints with Dataflow endpoints in the same group. If your use case requires both types of endpoints, you must create separate dataflow endpoint groups for each type.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags assigned to a resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.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

cfn_dataflow_endpoint_group_mixin_props = groundstation_mixins.CfnDataflowEndpointGroupMixinProps(
    contact_post_pass_duration_seconds=123,
    contact_pre_pass_duration_seconds=123,
    endpoint_details=[groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.EndpointDetailsProperty(
        aws_ground_station_agent_endpoint=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.AwsGroundStationAgentEndpointProperty(
            agent_status="agentStatus",
            audit_results="auditResults",
            egress_address=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.ConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.SocketAddressProperty(
                    name="name",
                    port=123
                )
            ),
            ingress_address=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.RangedConnectionDetailsProperty(
                mtu=123,
                socket_address=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.RangedSocketAddressProperty(
                    name="name",
                    port_range=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.IntegerRangeProperty(
                        maximum=123,
                        minimum=123
                    )
                )
            ),
            name="name"
        ),
        endpoint=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.DataflowEndpointProperty(
            address=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.SocketAddressProperty(
                name="name",
                port=123
            ),
            mtu=123,
            name="name"
        ),
        security_details=groundstation_mixins.CfnDataflowEndpointGroupPropsMixin.SecurityDetailsProperty(
            role_arn="roleArn",
            security_group_ids=["securityGroupIds"],
            subnet_ids=["subnetIds"]
        )
    )],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

contact_post_pass_duration_seconds

Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state.

A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-contactpostpassdurationseconds

contact_pre_pass_duration_seconds

Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state.

A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-contactprepassdurationseconds

endpoint_details

List of Endpoint Details, containing address and port for each endpoint.

All dataflow endpoints within a single dataflow endpoint group must be of the same type. You cannot mix AWS Ground Station Agent endpoints with Dataflow endpoints in the same group. If your use case requires both types of endpoints, you must create separate dataflow endpoint groups for each type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-endpointdetails

tags

Tags assigned to a resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#cfn-groundstation-dataflowendpointgroup-tags