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();
 

See Also: