Interface CfnDataflowEndpointGroup.SecurityDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroup.SecurityDetailsProperty.Jsii$Proxy
- Enclosing class:
- CfnDataflowEndpointGroup
@Stability(Stable)
public static interface CfnDataflowEndpointGroup.SecurityDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Information about IAM roles, subnets, and security groups needed for this DataflowEndpointGroup.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataflowEndpointGroup.SecurityDetailsPropertystatic final classAn implementation forCfnDataflowEndpointGroup.SecurityDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of a role which Ground Station has permission to assume, such asarn:aws:iam::1234567890:role/DataDeliveryServiceRole.The security group Ids of the security role, such assg-1234567890abcdef0.The subnet Ids of the security details, such assubnet-12345678.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoleArn
The ARN of a role which Ground Station has permission to assume, such asarn:aws:iam::1234567890:role/DataDeliveryServiceRole.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.
-
getSecurityGroupIds
The security group Ids of the security role, such assg-1234567890abcdef0. -
getSubnetIds
The subnet Ids of the security details, such assubnet-12345678. -
builder
-