com.pulumi.aws.batch.outputs.GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform 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.batch.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform {
/**
* @return The vCPU architecture. The default value is X86_64. Valid values are X86_64 and ARM64.
*
*/
private String cpuArchitecture;
/**
* @return The operating system for the compute environment. V
*
*/
private String operatingSystemFamily;
private GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform() {}
/**
* @return The vCPU architecture. The default value is X86_64. Valid values are X86_64 and ARM64.
*
*/
public String cpuArchitecture() {
return this.cpuArchitecture;
}
/**
* @return The operating system for the compute environment. V
*
*/
public String operatingSystemFamily() {
return this.operatingSystemFamily;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String cpuArchitecture;
private String operatingSystemFamily;
public Builder() {}
public Builder(GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform defaults) {
Objects.requireNonNull(defaults);
this.cpuArchitecture = defaults.cpuArchitecture;
this.operatingSystemFamily = defaults.operatingSystemFamily;
}
@CustomType.Setter
public Builder cpuArchitecture(String cpuArchitecture) {
if (cpuArchitecture == null) {
throw new MissingRequiredPropertyException("GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform", "cpuArchitecture");
}
this.cpuArchitecture = cpuArchitecture;
return this;
}
@CustomType.Setter
public Builder operatingSystemFamily(String operatingSystemFamily) {
if (operatingSystemFamily == null) {
throw new MissingRequiredPropertyException("GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform", "operatingSystemFamily");
}
this.operatingSystemFamily = operatingSystemFamily;
return this;
}
public GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform build() {
final var _resultValue = new GetJobDefinitionNodePropertyNodeRangePropertyContainerRuntimePlatform();
_resultValue.cpuArchitecture = cpuArchitecture;
_resultValue.operatingSystemFamily = operatingSystemFamily;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy