com.pulumi.aws.msk.inputs.GetConfigurationArgs 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.msk.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetConfigurationArgs extends com.pulumi.resources.InvokeArgs {
public static final GetConfigurationArgs Empty = new GetConfigurationArgs();
/**
* Name of the configuration.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return Name of the configuration.
*
*/
public Output name() {
return this.name;
}
private GetConfigurationArgs() {}
private GetConfigurationArgs(GetConfigurationArgs $) {
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetConfigurationArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetConfigurationArgs $;
public Builder() {
$ = new GetConfigurationArgs();
}
public Builder(GetConfigurationArgs defaults) {
$ = new GetConfigurationArgs(Objects.requireNonNull(defaults));
}
/**
* @param name Name of the configuration.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name Name of the configuration.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
public GetConfigurationArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetConfigurationArgs", "name");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy