com.pulumi.aws.auditmanager.outputs.GetControlControlMappingSourceSourceKeyword Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.auditmanager.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetControlControlMappingSourceSourceKeyword {
private String keywordInputType;
private String keywordValue;
private GetControlControlMappingSourceSourceKeyword() {}
public String keywordInputType() {
return this.keywordInputType;
}
public String keywordValue() {
return this.keywordValue;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetControlControlMappingSourceSourceKeyword defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String keywordInputType;
private String keywordValue;
public Builder() {}
public Builder(GetControlControlMappingSourceSourceKeyword defaults) {
Objects.requireNonNull(defaults);
this.keywordInputType = defaults.keywordInputType;
this.keywordValue = defaults.keywordValue;
}
@CustomType.Setter
public Builder keywordInputType(String keywordInputType) {
if (keywordInputType == null) {
throw new MissingRequiredPropertyException("GetControlControlMappingSourceSourceKeyword", "keywordInputType");
}
this.keywordInputType = keywordInputType;
return this;
}
@CustomType.Setter
public Builder keywordValue(String keywordValue) {
if (keywordValue == null) {
throw new MissingRequiredPropertyException("GetControlControlMappingSourceSourceKeyword", "keywordValue");
}
this.keywordValue = keywordValue;
return this;
}
public GetControlControlMappingSourceSourceKeyword build() {
final var _resultValue = new GetControlControlMappingSourceSourceKeyword();
_resultValue.keywordInputType = keywordInputType;
_resultValue.keywordValue = keywordValue;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy