com.pulumi.aws.ssmincidents.outputs.GetReplicationSetRegion 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.ssmincidents.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetReplicationSetRegion {
/**
* @return The ARN of the AWS Key Management Service (AWS KMS) encryption key.
*
*/
private String kmsKeyArn;
/**
* @return The name of the Region.
*
*/
private String name;
/**
* @return The current status of the Region.
* * Valid Values: `ACTIVE` | `CREATING` | `UPDATING` | `DELETING` | `FAILED`
*
*/
private String status;
/**
* @return More information about the status of a Region.
*
*/
private String statusMessage;
private GetReplicationSetRegion() {}
/**
* @return The ARN of the AWS Key Management Service (AWS KMS) encryption key.
*
*/
public String kmsKeyArn() {
return this.kmsKeyArn;
}
/**
* @return The name of the Region.
*
*/
public String name() {
return this.name;
}
/**
* @return The current status of the Region.
* * Valid Values: `ACTIVE` | `CREATING` | `UPDATING` | `DELETING` | `FAILED`
*
*/
public String status() {
return this.status;
}
/**
* @return More information about the status of a Region.
*
*/
public String statusMessage() {
return this.statusMessage;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetReplicationSetRegion defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String kmsKeyArn;
private String name;
private String status;
private String statusMessage;
public Builder() {}
public Builder(GetReplicationSetRegion defaults) {
Objects.requireNonNull(defaults);
this.kmsKeyArn = defaults.kmsKeyArn;
this.name = defaults.name;
this.status = defaults.status;
this.statusMessage = defaults.statusMessage;
}
@CustomType.Setter
public Builder kmsKeyArn(String kmsKeyArn) {
if (kmsKeyArn == null) {
throw new MissingRequiredPropertyException("GetReplicationSetRegion", "kmsKeyArn");
}
this.kmsKeyArn = kmsKeyArn;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetReplicationSetRegion", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder status(String status) {
if (status == null) {
throw new MissingRequiredPropertyException("GetReplicationSetRegion", "status");
}
this.status = status;
return this;
}
@CustomType.Setter
public Builder statusMessage(String statusMessage) {
if (statusMessage == null) {
throw new MissingRequiredPropertyException("GetReplicationSetRegion", "statusMessage");
}
this.statusMessage = statusMessage;
return this;
}
public GetReplicationSetRegion build() {
final var _resultValue = new GetReplicationSetRegion();
_resultValue.kmsKeyArn = kmsKeyArn;
_resultValue.name = name;
_resultValue.status = status;
_resultValue.statusMessage = statusMessage;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy