
commonMain.aws.sdk.kotlin.services.groundstation.model.SecurityDetails.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.groundstation.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about endpoints.
*/
public class SecurityDetails private constructor(builder: Builder) {
/**
* ARN to a role needed for connecting streams to your instances.
*/
public val roleArn: kotlin.String = requireNotNull(builder.roleArn) { "A non-null value must be provided for roleArn" }
/**
* The security groups to attach to the elastic network interfaces.
*/
public val securityGroupIds: List = requireNotNull(builder.securityGroupIds) { "A non-null value must be provided for securityGroupIds" }
/**
* A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.
*/
public val subnetIds: List = requireNotNull(builder.subnetIds) { "A non-null value must be provided for subnetIds" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.groundstation.model.SecurityDetails = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SecurityDetails(")
append("roleArn=$roleArn,")
append("securityGroupIds=$securityGroupIds,")
append("subnetIds=$subnetIds")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = roleArn.hashCode()
result = 31 * result + (securityGroupIds.hashCode())
result = 31 * result + (subnetIds.hashCode())
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as SecurityDetails
if (roleArn != other.roleArn) return false
if (securityGroupIds != other.securityGroupIds) return false
if (subnetIds != other.subnetIds) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.groundstation.model.SecurityDetails = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* ARN to a role needed for connecting streams to your instances.
*/
public var roleArn: kotlin.String? = null
/**
* The security groups to attach to the elastic network interfaces.
*/
public var securityGroupIds: List? = null
/**
* A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.
*/
public var subnetIds: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.groundstation.model.SecurityDetails) : this() {
this.roleArn = x.roleArn
this.securityGroupIds = x.securityGroupIds
this.subnetIds = x.subnetIds
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.groundstation.model.SecurityDetails = SecurityDetails(this)
internal fun correctErrors(): Builder {
if (roleArn == null) roleArn = ""
if (securityGroupIds == null) securityGroupIds = emptyList()
if (subnetIds == null) subnetIds = emptyList()
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy