![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.groundstation.kotlin.outputs.DataflowEndpointGroupSecurityDetails.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property roleArn 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.
* @property securityGroupIds The security group Ids of the security role, such as `sg-1234567890abcdef0` .
* @property subnetIds The subnet Ids of the security details, such as `subnet-12345678` .
*/
public data class DataflowEndpointGroupSecurityDetails(
public val roleArn: String? = null,
public val securityGroupIds: List? = null,
public val subnetIds: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.DataflowEndpointGroupSecurityDetails): DataflowEndpointGroupSecurityDetails = DataflowEndpointGroupSecurityDetails(
roleArn = javaType.roleArn().map({ args0 -> args0 }).orElse(null),
securityGroupIds = javaType.securityGroupIds().map({ args0 -> args0 }),
subnetIds = javaType.subnetIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy