aws-cdk-lib.aws_groundstation.CfnDataflowEndpointGroup.SecurityDetailsProperty

interface SecurityDetailsProperty

LanguageType name
.NETAmazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroup.SecurityDetailsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroup_SecurityDetailsProperty
Javasoftware.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroup.SecurityDetailsProperty
Pythonaws_cdk.aws_groundstation.CfnDataflowEndpointGroup.SecurityDetailsProperty
TypeScript aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroup » SecurityDetailsProperty

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 { aws_groundstation as groundstation } from 'aws-cdk-lib';
const securityDetailsProperty: groundstation.CfnDataflowEndpointGroup.SecurityDetailsProperty = {
  roleArn: 'roleArn',
  securityGroupIds: ['securityGroupIds'],
  subnetIds: ['subnetIds'],
};

Properties

NameTypeDescription
roleArn?stringThe ARN of a role which Ground Station has permission to assume, such as arn:aws:iam::1234567890:role/DataDeliveryServiceRole .
securityGroupIds?string[]The security group Ids of the security role, such as sg-1234567890abcdef0 .
subnetIds?string[]The subnet Ids of the security details, such as subnet-12345678 .

roleArn?

Type: string (optional)

The ARN of a role which Ground Station has permission to assume, such as arn: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.


securityGroupIds?

Type: string[] (optional)

The security group Ids of the security role, such as sg-1234567890abcdef0 .


subnetIds?

Type: string[] (optional)

The subnet Ids of the security details, such as subnet-12345678 .