Interface CfnDataflowEndpointGroupPropsMixin.SecurityDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataflowEndpointGroupPropsMixin.SecurityDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnDataflowEndpointGroupPropsMixin
@Stability(Stable)
public static interface CfnDataflowEndpointGroupPropsMixin.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.cfnpropertymixins.services.groundstation.*;
SecurityDetailsProperty securityDetailsProperty = SecurityDetailsProperty.builder()
.roleArn("roleArn")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataflowEndpointGroupPropsMixin.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.
- See Also:
-
getSecurityGroupIds
The security group Ids of the security role, such assg-1234567890abcdef0.- See Also:
-
getSubnetIds
The subnet Ids of the security details, such assubnet-12345678.- See Also:
-
builder
@Stability(Stable) static CfnDataflowEndpointGroupPropsMixin.SecurityDetailsProperty.Builder builder()
-