Interface CfnDataflowEndpointGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.groundstation.*;
CfnDataflowEndpointGroupMixinProps cfnDataflowEndpointGroupMixinProps = CfnDataflowEndpointGroupMixinProps.builder()
.contactPostPassDurationSeconds(123)
.contactPrePassDurationSeconds(123)
.endpointDetails(List.of(EndpointDetailsProperty.builder()
.awsGroundStationAgentEndpoint(AwsGroundStationAgentEndpointProperty.builder()
.agentStatus("agentStatus")
.auditResults("auditResults")
.egressAddress(ConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
.build())
.ingressAddress(RangedConnectionDetailsProperty.builder()
.mtu(123)
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
.build())
.name("name")
.build())
.endpoint(DataflowEndpointProperty.builder()
.address(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
.mtu(123)
.name("name")
.build())
.securityDetails(SecurityDetailsProperty.builder()
.roleArn("roleArn")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build())
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataflowEndpointGroupMixinPropsstatic final classAn implementation forCfnDataflowEndpointGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberAmount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in aPOSTPASSstate.default NumberAmount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in aPREPASSstate.default ObjectList of Endpoint Details, containing address and port for each endpoint.getTags()Tags assigned to a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContactPostPassDurationSeconds
Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in aPOSTPASSstate.A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the
POSTPASSstate.- See Also:
-
getContactPrePassDurationSeconds
Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in aPREPASSstate.A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the
PREPASSstate.- See Also:
-
getEndpointDetails
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.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataflowEndpointGroupPropsMixin.EndpointDetailsProperty>- See Also:
-
getTags
Tags assigned to a resource.- See Also:
-
builder
-