Class CfnDataflowEndpointGroupV2
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroupV2
- All Implemented Interfaces:
IInspectable,IDataflowEndpointGroupV2Ref,IEnvironmentAware,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)",
date="2026-01-09T10:20:19.778Z")
@Stability(Stable)
public class CfnDataflowEndpointGroupV2
extends CfnResource
implements IInspectable, IDataflowEndpointGroupV2Ref, ITaggableV2
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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.groundstation.*;
CfnDataflowEndpointGroupV2 cfnDataflowEndpointGroupV2 = CfnDataflowEndpointGroupV2.Builder.create(this, "MyCfnDataflowEndpointGroupV2")
.contactPostPassDurationSeconds(123)
.contactPrePassDurationSeconds(123)
.endpoints(List.of(CreateEndpointDetailsProperty.builder()
.downlinkAwsGroundStationAgentEndpoint(DownlinkAwsGroundStationAgentEndpointProperty.builder()
.dataflowDetails(DownlinkDataflowDetailsProperty.builder()
.agentConnectionDetails(DownlinkConnectionDetailsProperty.builder()
.agentIpAndPortAddress(RangedConnectionDetailsProperty.builder()
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
// the properties below are optional
.mtu(123)
.build())
.egressAddressAndPort(ConnectionDetailsProperty.builder()
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
// the properties below are optional
.mtu(123)
.build())
.build())
.build())
.name("name")
.build())
.uplinkAwsGroundStationAgentEndpoint(UplinkAwsGroundStationAgentEndpointProperty.builder()
.dataflowDetails(UplinkDataflowDetailsProperty.builder()
.agentConnectionDetails(UplinkConnectionDetailsProperty.builder()
.agentIpAndPortAddress(RangedConnectionDetailsProperty.builder()
.socketAddress(RangedSocketAddressProperty.builder()
.name("name")
.portRange(IntegerRangeProperty.builder()
.maximum(123)
.minimum(123)
.build())
.build())
// the properties below are optional
.mtu(123)
.build())
.ingressAddressAndPort(ConnectionDetailsProperty.builder()
.socketAddress(SocketAddressProperty.builder()
.name("name")
.port(123)
.build())
// the properties below are optional
.mtu(123)
.build())
.build())
.build())
.name("name")
.build())
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnDataflowEndpointGroupV2.static interfaceEgress address of AgentEndpoint with an optional mtu.static interfaceEndpoint definition used for creating a dataflow endpoint.static interfaceDetails for a downlink agent endpoint.static interfaceDefinition for a downlink agent endpoint.static interfaceConnection details for Ground Station to Agent and Agent to customer.static interfaceDataflow details for a downlink endpoint.static interfaceInformation about the endpoint details.static interfaceAn integer range that has a minimum and maximum value.static interfaceIngress address of AgentEndpoint with a port range and an optional mtu.static interfaceA socket address with a port range.static interfaceInformation about the socket address.static interfaceDetails for an uplink agent endpoint.static interfaceDefinition for an uplink agent endpoint.static interfaceConnection details for customer to Agent and Agent to Ground Station.static interfaceDataflow details for an uplink endpoint.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.groundstation.IDataflowEndpointGroupV2Ref
IDataflowEndpointGroupV2Ref.Jsii$Default, IDataflowEndpointGroupV2Ref.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnDataflowEndpointGroupV2(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnDataflowEndpointGroupV2(software.amazon.jsii.JsiiObjectRef objRef) CfnDataflowEndpointGroupV2(software.constructs.Construct scope, String id) Create a newAWS::GroundStation::DataflowEndpointGroupV2.CfnDataflowEndpointGroupV2(software.constructs.Construct scope, String id, CfnDataflowEndpointGroupV2Props props) Create a newAWS::GroundStation::DataflowEndpointGroupV2. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringInformation about the endpoint details.Tag Manager which manages the tags for this resource.Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state.Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state.A reference to a DataflowEndpointGroupV2 resource.List of endpoints for the dataflow endpoint group.getTags()Tags assigned to a resource.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.static BooleanChecks whether the given object is a CfnDataflowEndpointGroupV2.renderProperties(Map<String, Object> props) voidAmount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state.voidAmount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state.voidsetEndpoints(List<Object> value) List of endpoints for the dataflow endpoint group.voidsetEndpoints(IResolvable value) List of endpoints for the dataflow endpoint group.voidTags assigned to a resource.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnDataflowEndpointGroupV2
protected CfnDataflowEndpointGroupV2(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDataflowEndpointGroupV2
protected CfnDataflowEndpointGroupV2(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDataflowEndpointGroupV2
@Stability(Stable) public CfnDataflowEndpointGroupV2(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnDataflowEndpointGroupV2Props props) Create a newAWS::GroundStation::DataflowEndpointGroupV2.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties.
-
CfnDataflowEndpointGroupV2
@Stability(Stable) public CfnDataflowEndpointGroupV2(@NotNull software.constructs.Construct scope, @NotNull String id) Create a newAWS::GroundStation::DataflowEndpointGroupV2.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
arnForDataflowEndpointGroupV2
@Stability(Stable) @NotNull public static String arnForDataflowEndpointGroupV2(@NotNull IDataflowEndpointGroupV2Ref resource) - Parameters:
resource- This parameter is required.
-
isCfnDataflowEndpointGroupV2
Checks whether the given object is a CfnDataflowEndpointGroupV2.- Parameters:
x- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
-
getAttrEndpointDetails
Information about the endpoint details. -
getAttrId
-
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManagerin interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getDataflowEndpointGroupV2Ref
A reference to a DataflowEndpointGroupV2 resource.- Specified by:
getDataflowEndpointGroupV2Refin interfaceIDataflowEndpointGroupV2Ref
-
getContactPostPassDurationSeconds
Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. -
setContactPostPassDurationSeconds
Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. -
getContactPrePassDurationSeconds
Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. -
setContactPrePassDurationSeconds
Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. -
getEndpoints
List of endpoints for the dataflow endpoint group.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataflowEndpointGroupV2.CreateEndpointDetailsProperty> -
setEndpoints
List of endpoints for the dataflow endpoint group. -
setEndpoints
List of endpoints for the dataflow endpoint group. -
getTags
Tags assigned to a resource. -
setTags
Tags assigned to a resource.
-