Interface CfnDataflowEndpointGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataflowEndpointGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.149Z") @Stability(Stable) public interface CfnDataflowEndpointGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnDataflowEndpointGroup.

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.*;
 CfnDataflowEndpointGroupProps cfnDataflowEndpointGroupProps = CfnDataflowEndpointGroupProps.builder()
         .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()))
         // the properties below are optional
         .contactPostPassDurationSeconds(123)
         .contactPrePassDurationSeconds(123)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getEndpointDetails

      @Stability(Stable) @NotNull Object getEndpointDetails()
      List of Endpoint Details, containing address and port for each endpoint.
    • getContactPostPassDurationSeconds

      @Stability(Stable) @Nullable default Number getContactPostPassDurationSeconds()
      AWS::GroundStation::DataflowEndpointGroup.ContactPostPassDurationSeconds.
    • getContactPrePassDurationSeconds

      @Stability(Stable) @Nullable default Number getContactPrePassDurationSeconds()
      AWS::GroundStation::DataflowEndpointGroup.ContactPrePassDurationSeconds.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      Tags assigned to a resource.
    • builder

      @Stability(Stable) static CfnDataflowEndpointGroupProps.Builder builder()
      Returns:
      a CfnDataflowEndpointGroupProps.Builder of CfnDataflowEndpointGroupProps