com.pulumi.aws.location.outputs.GetRouteCalculatorResult 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.
The newest version!
// *** 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.location.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
@CustomType
public final class GetRouteCalculatorResult {
/**
* @return ARN for the Route calculator resource. Use the ARN when you specify a resource across AWS.
*
*/
private String calculatorArn;
private String calculatorName;
/**
* @return Timestamp for when the route calculator resource was created in ISO 8601 format.
*
*/
private String createTime;
/**
* @return Data provider of traffic and road network data.
*
*/
private String dataSource;
/**
* @return Optional description of the route calculator resource.
*
*/
private String description;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
/**
* @return Key-value map of resource tags for the route calculator.
*
*/
private Map tags;
/**
* @return Timestamp for when the route calculator resource was last updated in ISO 8601 format.
*
*/
private String updateTime;
private GetRouteCalculatorResult() {}
/**
* @return ARN for the Route calculator resource. Use the ARN when you specify a resource across AWS.
*
*/
public String calculatorArn() {
return this.calculatorArn;
}
public String calculatorName() {
return this.calculatorName;
}
/**
* @return Timestamp for when the route calculator resource was created in ISO 8601 format.
*
*/
public String createTime() {
return this.createTime;
}
/**
* @return Data provider of traffic and road network data.
*
*/
public String dataSource() {
return this.dataSource;
}
/**
* @return Optional description of the route calculator resource.
*
*/
public String description() {
return this.description;
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
/**
* @return Key-value map of resource tags for the route calculator.
*
*/
public Map tags() {
return this.tags;
}
/**
* @return Timestamp for when the route calculator resource was last updated in ISO 8601 format.
*
*/
public String updateTime() {
return this.updateTime;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetRouteCalculatorResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String calculatorArn;
private String calculatorName;
private String createTime;
private String dataSource;
private String description;
private String id;
private Map tags;
private String updateTime;
public Builder() {}
public Builder(GetRouteCalculatorResult defaults) {
Objects.requireNonNull(defaults);
this.calculatorArn = defaults.calculatorArn;
this.calculatorName = defaults.calculatorName;
this.createTime = defaults.createTime;
this.dataSource = defaults.dataSource;
this.description = defaults.description;
this.id = defaults.id;
this.tags = defaults.tags;
this.updateTime = defaults.updateTime;
}
@CustomType.Setter
public Builder calculatorArn(String calculatorArn) {
if (calculatorArn == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "calculatorArn");
}
this.calculatorArn = calculatorArn;
return this;
}
@CustomType.Setter
public Builder calculatorName(String calculatorName) {
if (calculatorName == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "calculatorName");
}
this.calculatorName = calculatorName;
return this;
}
@CustomType.Setter
public Builder createTime(String createTime) {
if (createTime == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "createTime");
}
this.createTime = createTime;
return this;
}
@CustomType.Setter
public Builder dataSource(String dataSource) {
if (dataSource == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "dataSource");
}
this.dataSource = dataSource;
return this;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder tags(Map tags) {
if (tags == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "tags");
}
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder updateTime(String updateTime) {
if (updateTime == null) {
throw new MissingRequiredPropertyException("GetRouteCalculatorResult", "updateTime");
}
this.updateTime = updateTime;
return this;
}
public GetRouteCalculatorResult build() {
final var _resultValue = new GetRouteCalculatorResult();
_resultValue.calculatorArn = calculatorArn;
_resultValue.calculatorName = calculatorName;
_resultValue.createTime = createTime;
_resultValue.dataSource = dataSource;
_resultValue.description = description;
_resultValue.id = id;
_resultValue.tags = tags;
_resultValue.updateTime = updateTime;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy