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

com.pulumi.aws.iam.inputs.GetOpenIdConnectProviderArgs 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.iam.inputs;

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


public final class GetOpenIdConnectProviderArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetOpenIdConnectProviderArgs Empty = new GetOpenIdConnectProviderArgs();

    /**
     * ARN of the OpenID Connect provider.
     * 
     */
    @Import(name="arn")
    private @Nullable Output arn;

    /**
     * @return ARN of the OpenID Connect provider.
     * 
     */
    public Optional> arn() {
        return Optional.ofNullable(this.arn);
    }

    /**
     * Map of resource tags for the IAM OIDC provider.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Map of resource tags for the IAM OIDC provider.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    /**
     * URL of the OpenID Connect provider.
     * 
     */
    @Import(name="url")
    private @Nullable Output url;

    /**
     * @return URL of the OpenID Connect provider.
     * 
     */
    public Optional> url() {
        return Optional.ofNullable(this.url);
    }

    private GetOpenIdConnectProviderArgs() {}

    private GetOpenIdConnectProviderArgs(GetOpenIdConnectProviderArgs $) {
        this.arn = $.arn;
        this.tags = $.tags;
        this.url = $.url;
    }

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

    public static final class Builder {
        private GetOpenIdConnectProviderArgs $;

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

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

        /**
         * @param arn ARN of the OpenID Connect provider.
         * 
         * @return builder
         * 
         */
        public Builder arn(@Nullable Output arn) {
            $.arn = arn;
            return this;
        }

        /**
         * @param arn ARN of the OpenID Connect provider.
         * 
         * @return builder
         * 
         */
        public Builder arn(String arn) {
            return arn(Output.of(arn));
        }

        /**
         * @param tags Map of resource tags for the IAM OIDC provider.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Map of resource tags for the IAM OIDC provider.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param url URL of the OpenID Connect provider.
         * 
         * @return builder
         * 
         */
        public Builder url(@Nullable Output url) {
            $.url = url;
            return this;
        }

        /**
         * @param url URL of the OpenID Connect provider.
         * 
         * @return builder
         * 
         */
        public Builder url(String url) {
            return url(Output.of(url));
        }

        public GetOpenIdConnectProviderArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy