
com.pulumi.aws.location.outputs.GetTrackerResult 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.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 GetTrackerResult {
/**
* @return Timestamp for when the tracker resource was created in ISO 8601 format.
*
*/
private String createTime;
/**
* @return Optional description for the tracker resource.
*
*/
private String description;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
/**
* @return Key identifier for an AWS KMS customer managed key assigned to the Amazon Location resource.
*
*/
private String kmsKeyId;
/**
* @return Position filtering method of the tracker resource.
*
*/
private String positionFiltering;
/**
* @return Key-value map of resource tags for the tracker.
*
*/
private Map tags;
/**
* @return ARN for the tracker resource. Used when you need to specify a resource across all AWS.
*
*/
private String trackerArn;
private String trackerName;
/**
* @return Timestamp for when the tracker resource was last updated in ISO 8601 format.
*
*/
private String updateTime;
private GetTrackerResult() {}
/**
* @return Timestamp for when the tracker resource was created in ISO 8601 format.
*
*/
public String createTime() {
return this.createTime;
}
/**
* @return Optional description for the tracker 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 identifier for an AWS KMS customer managed key assigned to the Amazon Location resource.
*
*/
public String kmsKeyId() {
return this.kmsKeyId;
}
/**
* @return Position filtering method of the tracker resource.
*
*/
public String positionFiltering() {
return this.positionFiltering;
}
/**
* @return Key-value map of resource tags for the tracker.
*
*/
public Map tags() {
return this.tags;
}
/**
* @return ARN for the tracker resource. Used when you need to specify a resource across all AWS.
*
*/
public String trackerArn() {
return this.trackerArn;
}
public String trackerName() {
return this.trackerName;
}
/**
* @return Timestamp for when the tracker 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(GetTrackerResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String createTime;
private String description;
private String id;
private String kmsKeyId;
private String positionFiltering;
private Map tags;
private String trackerArn;
private String trackerName;
private String updateTime;
public Builder() {}
public Builder(GetTrackerResult defaults) {
Objects.requireNonNull(defaults);
this.createTime = defaults.createTime;
this.description = defaults.description;
this.id = defaults.id;
this.kmsKeyId = defaults.kmsKeyId;
this.positionFiltering = defaults.positionFiltering;
this.tags = defaults.tags;
this.trackerArn = defaults.trackerArn;
this.trackerName = defaults.trackerName;
this.updateTime = defaults.updateTime;
}
@CustomType.Setter
public Builder createTime(String createTime) {
if (createTime == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "createTime");
}
this.createTime = createTime;
return this;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kmsKeyId(String kmsKeyId) {
if (kmsKeyId == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "kmsKeyId");
}
this.kmsKeyId = kmsKeyId;
return this;
}
@CustomType.Setter
public Builder positionFiltering(String positionFiltering) {
if (positionFiltering == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "positionFiltering");
}
this.positionFiltering = positionFiltering;
return this;
}
@CustomType.Setter
public Builder tags(Map tags) {
if (tags == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "tags");
}
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder trackerArn(String trackerArn) {
if (trackerArn == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "trackerArn");
}
this.trackerArn = trackerArn;
return this;
}
@CustomType.Setter
public Builder trackerName(String trackerName) {
if (trackerName == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "trackerName");
}
this.trackerName = trackerName;
return this;
}
@CustomType.Setter
public Builder updateTime(String updateTime) {
if (updateTime == null) {
throw new MissingRequiredPropertyException("GetTrackerResult", "updateTime");
}
this.updateTime = updateTime;
return this;
}
public GetTrackerResult build() {
final var _resultValue = new GetTrackerResult();
_resultValue.createTime = createTime;
_resultValue.description = description;
_resultValue.id = id;
_resultValue.kmsKeyId = kmsKeyId;
_resultValue.positionFiltering = positionFiltering;
_resultValue.tags = tags;
_resultValue.trackerArn = trackerArn;
_resultValue.trackerName = trackerName;
_resultValue.updateTime = updateTime;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy