com.pulumi.aws.securityhub.inputs.GetStandardsControlAssociationsPlainArgs 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.securityhub.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetStandardsControlAssociationsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetStandardsControlAssociationsPlainArgs Empty = new GetStandardsControlAssociationsPlainArgs();
/**
* The identifier of the control (identified with `SecurityControlId`, `SecurityControlArn`, or a mix of both parameters).
*
*/
@Import(name="securityControlId", required=true)
private String securityControlId;
/**
* @return The identifier of the control (identified with `SecurityControlId`, `SecurityControlArn`, or a mix of both parameters).
*
*/
public String securityControlId() {
return this.securityControlId;
}
private GetStandardsControlAssociationsPlainArgs() {}
private GetStandardsControlAssociationsPlainArgs(GetStandardsControlAssociationsPlainArgs $) {
this.securityControlId = $.securityControlId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetStandardsControlAssociationsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetStandardsControlAssociationsPlainArgs $;
public Builder() {
$ = new GetStandardsControlAssociationsPlainArgs();
}
public Builder(GetStandardsControlAssociationsPlainArgs defaults) {
$ = new GetStandardsControlAssociationsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param securityControlId The identifier of the control (identified with `SecurityControlId`, `SecurityControlArn`, or a mix of both parameters).
*
* @return builder
*
*/
public Builder securityControlId(String securityControlId) {
$.securityControlId = securityControlId;
return this;
}
public GetStandardsControlAssociationsPlainArgs build() {
if ($.securityControlId == null) {
throw new MissingRequiredPropertyException("GetStandardsControlAssociationsPlainArgs", "securityControlId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy