com.pulumi.aws.batch.outputs.JobDefinitionEksProperties 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.aws.batch.outputs.JobDefinitionEksPropertiesPodProperties;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
@CustomType
public final class JobDefinitionEksProperties {
/**
* @return Properties for the Kubernetes pod resources of a job. See `pod_properties` below.
*
*/
private JobDefinitionEksPropertiesPodProperties podProperties;
private JobDefinitionEksProperties() {}
/**
* @return Properties for the Kubernetes pod resources of a job. See `pod_properties` below.
*
*/
public JobDefinitionEksPropertiesPodProperties podProperties() {
return this.podProperties;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(JobDefinitionEksProperties defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private JobDefinitionEksPropertiesPodProperties podProperties;
public Builder() {}
public Builder(JobDefinitionEksProperties defaults) {
Objects.requireNonNull(defaults);
this.podProperties = defaults.podProperties;
}
@CustomType.Setter
public Builder podProperties(JobDefinitionEksPropertiesPodProperties podProperties) {
if (podProperties == null) {
throw new MissingRequiredPropertyException("JobDefinitionEksProperties", "podProperties");
}
this.podProperties = podProperties;
return this;
}
public JobDefinitionEksProperties build() {
final var _resultValue = new JobDefinitionEksProperties();
_resultValue.podProperties = podProperties;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy