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

com.pulumi.aws.workspaces.inputs.DirectorySamlPropertiesArgs 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.workspaces.inputs;

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


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

    public static final DirectorySamlPropertiesArgs Empty = new DirectorySamlPropertiesArgs();

    /**
     * The relay state parameter name supported by the SAML 2.0 identity provider (IdP). Default `RelayState`.
     * 
     */
    @Import(name="relayStateParameterName")
    private @Nullable Output relayStateParameterName;

    /**
     * @return The relay state parameter name supported by the SAML 2.0 identity provider (IdP). Default `RelayState`.
     * 
     */
    public Optional> relayStateParameterName() {
        return Optional.ofNullable(this.relayStateParameterName);
    }

    /**
     * Status of SAML 2.0 authentication. Default `DISABLED`.
     * 
     */
    @Import(name="status")
    private @Nullable Output status;

    /**
     * @return Status of SAML 2.0 authentication. Default `DISABLED`.
     * 
     */
    public Optional> status() {
        return Optional.ofNullable(this.status);
    }

    /**
     * The SAML 2.0 identity provider (IdP) user access URL.
     * 
     */
    @Import(name="userAccessUrl")
    private @Nullable Output userAccessUrl;

    /**
     * @return The SAML 2.0 identity provider (IdP) user access URL.
     * 
     */
    public Optional> userAccessUrl() {
        return Optional.ofNullable(this.userAccessUrl);
    }

    private DirectorySamlPropertiesArgs() {}

    private DirectorySamlPropertiesArgs(DirectorySamlPropertiesArgs $) {
        this.relayStateParameterName = $.relayStateParameterName;
        this.status = $.status;
        this.userAccessUrl = $.userAccessUrl;
    }

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

    public static final class Builder {
        private DirectorySamlPropertiesArgs $;

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

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

        /**
         * @param relayStateParameterName The relay state parameter name supported by the SAML 2.0 identity provider (IdP). Default `RelayState`.
         * 
         * @return builder
         * 
         */
        public Builder relayStateParameterName(@Nullable Output relayStateParameterName) {
            $.relayStateParameterName = relayStateParameterName;
            return this;
        }

        /**
         * @param relayStateParameterName The relay state parameter name supported by the SAML 2.0 identity provider (IdP). Default `RelayState`.
         * 
         * @return builder
         * 
         */
        public Builder relayStateParameterName(String relayStateParameterName) {
            return relayStateParameterName(Output.of(relayStateParameterName));
        }

        /**
         * @param status Status of SAML 2.0 authentication. Default `DISABLED`.
         * 
         * @return builder
         * 
         */
        public Builder status(@Nullable Output status) {
            $.status = status;
            return this;
        }

        /**
         * @param status Status of SAML 2.0 authentication. Default `DISABLED`.
         * 
         * @return builder
         * 
         */
        public Builder status(String status) {
            return status(Output.of(status));
        }

        /**
         * @param userAccessUrl The SAML 2.0 identity provider (IdP) user access URL.
         * 
         * @return builder
         * 
         */
        public Builder userAccessUrl(@Nullable Output userAccessUrl) {
            $.userAccessUrl = userAccessUrl;
            return this;
        }

        /**
         * @param userAccessUrl The SAML 2.0 identity provider (IdP) user access URL.
         * 
         * @return builder
         * 
         */
        public Builder userAccessUrl(String userAccessUrl) {
            return userAccessUrl(Output.of(userAccessUrl));
        }

        public DirectorySamlPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy