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

com.pulumi.aws.verifiedaccess.inputs.GroupSseConfigurationArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.aws.verifiedaccess.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GroupSseConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final GroupSseConfigurationArgs Empty = new GroupSseConfigurationArgs();

    @Import(name="customerManagedKeyEnabled")
    private @Nullable Output customerManagedKeyEnabled;

    public Optional> customerManagedKeyEnabled() {
        return Optional.ofNullable(this.customerManagedKeyEnabled);
    }

    /**
     * ARN of the KMS key to use.
     * 
     */
    @Import(name="kmsKeyArn")
    private @Nullable Output kmsKeyArn;

    /**
     * @return ARN of the KMS key to use.
     * 
     */
    public Optional> kmsKeyArn() {
        return Optional.ofNullable(this.kmsKeyArn);
    }

    private GroupSseConfigurationArgs() {}

    private GroupSseConfigurationArgs(GroupSseConfigurationArgs $) {
        this.customerManagedKeyEnabled = $.customerManagedKeyEnabled;
        this.kmsKeyArn = $.kmsKeyArn;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GroupSseConfigurationArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GroupSseConfigurationArgs $;

        public Builder() {
            $ = new GroupSseConfigurationArgs();
        }

        public Builder(GroupSseConfigurationArgs defaults) {
            $ = new GroupSseConfigurationArgs(Objects.requireNonNull(defaults));
        }

        public Builder customerManagedKeyEnabled(@Nullable Output customerManagedKeyEnabled) {
            $.customerManagedKeyEnabled = customerManagedKeyEnabled;
            return this;
        }

        public Builder customerManagedKeyEnabled(Boolean customerManagedKeyEnabled) {
            return customerManagedKeyEnabled(Output.of(customerManagedKeyEnabled));
        }

        /**
         * @param kmsKeyArn ARN of the KMS key to use.
         * 
         * @return builder
         * 
         */
        public Builder kmsKeyArn(@Nullable Output kmsKeyArn) {
            $.kmsKeyArn = kmsKeyArn;
            return this;
        }

        /**
         * @param kmsKeyArn ARN of the KMS key to use.
         * 
         * @return builder
         * 
         */
        public Builder kmsKeyArn(String kmsKeyArn) {
            return kmsKeyArn(Output.of(kmsKeyArn));
        }

        public GroupSseConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy