All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.redshift.model.AuthorizeClusterSecurityGroupIngressRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.redshift.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 *
 */
public class AuthorizeClusterSecurityGroupIngressRequest private constructor(builder: Builder) {
    /**
     * The IP range to be added the Amazon Redshift security group.
     */
    public val cidrip: kotlin.String? = builder.cidrip
    /**
     * The name of the security group to which the ingress rule is added.
     */
    public val clusterSecurityGroupName: kotlin.String? = builder.clusterSecurityGroupName
    /**
     * The EC2 security group to be added the Amazon Redshift security group.
     */
    public val ec2SecurityGroupName: kotlin.String? = builder.ec2SecurityGroupName
    /**
     * The Amazon Web Services account number of the owner of the security group specified by the *EC2SecurityGroupName* parameter. The Amazon Web Services Access Key ID is not an acceptable value.
     *
     * Example: `111122223333`
     */
    public val ec2SecurityGroupOwnerId: kotlin.String? = builder.ec2SecurityGroupOwnerId

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.AuthorizeClusterSecurityGroupIngressRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("AuthorizeClusterSecurityGroupIngressRequest(")
        append("cidrip=$cidrip,")
        append("clusterSecurityGroupName=$clusterSecurityGroupName,")
        append("ec2SecurityGroupName=$ec2SecurityGroupName,")
        append("ec2SecurityGroupOwnerId=$ec2SecurityGroupOwnerId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = cidrip?.hashCode() ?: 0
        result = 31 * result + (clusterSecurityGroupName?.hashCode() ?: 0)
        result = 31 * result + (ec2SecurityGroupName?.hashCode() ?: 0)
        result = 31 * result + (ec2SecurityGroupOwnerId?.hashCode() ?: 0)
        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 AuthorizeClusterSecurityGroupIngressRequest

        if (cidrip != other.cidrip) return false
        if (clusterSecurityGroupName != other.clusterSecurityGroupName) return false
        if (ec2SecurityGroupName != other.ec2SecurityGroupName) return false
        if (ec2SecurityGroupOwnerId != other.ec2SecurityGroupOwnerId) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.AuthorizeClusterSecurityGroupIngressRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The IP range to be added the Amazon Redshift security group.
         */
        public var cidrip: kotlin.String? = null
        /**
         * The name of the security group to which the ingress rule is added.
         */
        public var clusterSecurityGroupName: kotlin.String? = null
        /**
         * The EC2 security group to be added the Amazon Redshift security group.
         */
        public var ec2SecurityGroupName: kotlin.String? = null
        /**
         * The Amazon Web Services account number of the owner of the security group specified by the *EC2SecurityGroupName* parameter. The Amazon Web Services Access Key ID is not an acceptable value.
         *
         * Example: `111122223333`
         */
        public var ec2SecurityGroupOwnerId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.redshift.model.AuthorizeClusterSecurityGroupIngressRequest) : this() {
            this.cidrip = x.cidrip
            this.clusterSecurityGroupName = x.clusterSecurityGroupName
            this.ec2SecurityGroupName = x.ec2SecurityGroupName
            this.ec2SecurityGroupOwnerId = x.ec2SecurityGroupOwnerId
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.redshift.model.AuthorizeClusterSecurityGroupIngressRequest = AuthorizeClusterSecurityGroupIngressRequest(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy