@Stability(value=Stable)
public static interface CfnDataflowEndpointGroup.SecurityDetailsProperty
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.*;
SecurityDetailsProperty securityDetailsProperty = SecurityDetailsProperty.builder()
.roleArn("roleArn")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataflowEndpointGroup.SecurityDetailsProperty.Builder
A builder for
CfnDataflowEndpointGroup.SecurityDetailsProperty |
static class |
CfnDataflowEndpointGroup.SecurityDetailsProperty.Jsii$Proxy
An implementation for
CfnDataflowEndpointGroup.SecurityDetailsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataflowEndpointGroup.SecurityDetailsProperty.Builder |
builder() |
default String |
getRoleArn()
The ARN of a role which Ground Station has permission to assume, such as `arn:aws:iam::1234567890:role/DataDeliveryServiceRole` .
|
default List<String> |
getSecurityGroupIds()
The security group Ids of the security role, such as `sg-1234567890abcdef0` .
|
default List<String> |
getSubnetIds()
The subnet Ids of the security details, such as `subnet-12345678` .
|
@Stability(value=Stable) @Nullable default String getRoleArn()
Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact.
@Stability(value=Stable) @Nullable default List<String> getSecurityGroupIds()
@Stability(value=Stable) @Nullable default List<String> getSubnetIds()
@Stability(value=Stable) static CfnDataflowEndpointGroup.SecurityDetailsProperty.Builder builder()
Copyright © 2022. All rights reserved.