@Stability(value=Stable)
public static interface CfnDataflowEndpointGroup.EndpointDetailsProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
EndpointDetailsProperty endpointDetailsProperty = EndpointDetailsProperty.builder()
.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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataflowEndpointGroup.EndpointDetailsProperty.Builder
A builder for
CfnDataflowEndpointGroup.EndpointDetailsProperty |
static class |
CfnDataflowEndpointGroup.EndpointDetailsProperty.Jsii$Proxy
An implementation for
CfnDataflowEndpointGroup.EndpointDetailsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataflowEndpointGroup.EndpointDetailsProperty.Builder |
builder() |
default Object |
getEndpoint()
Information about the endpoint such as name and the endpoint address.
|
default Object |
getSecurityDetails()
The role ARN, and IDs for security groups and subnets.
|
@Stability(value=Stable) @Nullable default Object getEndpoint()
@Stability(value=Stable) @Nullable default Object getSecurityDetails()
@Stability(value=Stable) static CfnDataflowEndpointGroup.EndpointDetailsProperty.Builder builder()
Copyright © 2022. All rights reserved.