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

com.pulumi.aws.identitystore.inputs.GroupExternalIdArgs Maven / Gradle / Ivy

// *** 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.identitystore.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 GroupExternalIdArgs extends com.pulumi.resources.ResourceArgs {

    public static final GroupExternalIdArgs Empty = new GroupExternalIdArgs();

    /**
     * The identifier issued to this resource by an external identity provider.
     * 
     */
    @Import(name="id")
    private @Nullable Output id;

    /**
     * @return The identifier issued to this resource by an external identity provider.
     * 
     */
    public Optional> id() {
        return Optional.ofNullable(this.id);
    }

    /**
     * The issuer for an external identifier.
     * 
     */
    @Import(name="issuer")
    private @Nullable Output issuer;

    /**
     * @return The issuer for an external identifier.
     * 
     */
    public Optional> issuer() {
        return Optional.ofNullable(this.issuer);
    }

    private GroupExternalIdArgs() {}

    private GroupExternalIdArgs(GroupExternalIdArgs $) {
        this.id = $.id;
        this.issuer = $.issuer;
    }

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

    public static final class Builder {
        private GroupExternalIdArgs $;

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

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

        /**
         * @param id The identifier issued to this resource by an external identity provider.
         * 
         * @return builder
         * 
         */
        public Builder id(@Nullable Output id) {
            $.id = id;
            return this;
        }

        /**
         * @param id The identifier issued to this resource by an external identity provider.
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            return id(Output.of(id));
        }

        /**
         * @param issuer The issuer for an external identifier.
         * 
         * @return builder
         * 
         */
        public Builder issuer(@Nullable Output issuer) {
            $.issuer = issuer;
            return this;
        }

        /**
         * @param issuer The issuer for an external identifier.
         * 
         * @return builder
         * 
         */
        public Builder issuer(String issuer) {
            return issuer(Output.of(issuer));
        }

        public GroupExternalIdArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy