software.amazon.awscdk.services.gamelift.alpha.GameSessionQueueAttributes Maven / Gradle / Ivy
Show all versions of gamelift-alpha Show documentation
package software.amazon.awscdk.services.gamelift.alpha;
/**
* (experimental) A full specification of an gameSessionQueue that can be used to import it fluently into the CDK application.
*
* Example:
*
*
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import software.amazon.awscdk.services.gamelift.alpha.*;
* GameSessionQueueAttributes gameSessionQueueAttributes = GameSessionQueueAttributes.builder()
* .gameSessionQueueArn("gameSessionQueueArn")
* .gameSessionQueueName("gameSessionQueueName")
* .build();
*
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.104.0 (build e79254c)", date = "2024-12-27T17:02:12.106Z")
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.gamelift.alpha.$Module.class, fqn = "@aws-cdk/aws-gamelift-alpha.GameSessionQueueAttributes")
@software.amazon.jsii.Jsii.Proxy(GameSessionQueueAttributes.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface GameSessionQueueAttributes extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) The ARN of the gameSessionQueue.
*
* At least one of gameSessionQueueArn
and gameSessionQueueName
must be provided.
*
* Default: derived from `gameSessionQueueName`.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getGameSessionQueueArn() {
return null;
}
/**
* (experimental) The name of the gameSessionQueue.
*
* At least one of gameSessionQueueName
and gameSessionQueueArn
must be provided.
*
* Default: derived from `gameSessionQueueArn`.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getGameSessionQueueName() {
return null;
}
/**
* @return a {@link Builder} of {@link GameSessionQueueAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link GameSessionQueueAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String gameSessionQueueArn;
java.lang.String gameSessionQueueName;
/**
* Sets the value of {@link GameSessionQueueAttributes#getGameSessionQueueArn}
* @param gameSessionQueueArn The ARN of the gameSessionQueue.
* At least one of gameSessionQueueArn
and gameSessionQueueName
must be provided.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder gameSessionQueueArn(java.lang.String gameSessionQueueArn) {
this.gameSessionQueueArn = gameSessionQueueArn;
return this;
}
/**
* Sets the value of {@link GameSessionQueueAttributes#getGameSessionQueueName}
* @param gameSessionQueueName The name of the gameSessionQueue.
* At least one of gameSessionQueueName
and gameSessionQueueArn
must be provided.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder gameSessionQueueName(java.lang.String gameSessionQueueName) {
this.gameSessionQueueName = gameSessionQueueName;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link GameSessionQueueAttributes}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public GameSessionQueueAttributes build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link GameSessionQueueAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements GameSessionQueueAttributes {
private final java.lang.String gameSessionQueueArn;
private final java.lang.String gameSessionQueueName;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.gameSessionQueueArn = software.amazon.jsii.Kernel.get(this, "gameSessionQueueArn", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.gameSessionQueueName = software.amazon.jsii.Kernel.get(this, "gameSessionQueueName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.gameSessionQueueArn = builder.gameSessionQueueArn;
this.gameSessionQueueName = builder.gameSessionQueueName;
}
@Override
public final java.lang.String getGameSessionQueueArn() {
return this.gameSessionQueueArn;
}
@Override
public final java.lang.String getGameSessionQueueName() {
return this.gameSessionQueueName;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
if (this.getGameSessionQueueArn() != null) {
data.set("gameSessionQueueArn", om.valueToTree(this.getGameSessionQueueArn()));
}
if (this.getGameSessionQueueName() != null) {
data.set("gameSessionQueueName", om.valueToTree(this.getGameSessionQueueName()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@aws-cdk/aws-gamelift-alpha.GameSessionQueueAttributes"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GameSessionQueueAttributes.Jsii$Proxy that = (GameSessionQueueAttributes.Jsii$Proxy) o;
if (this.gameSessionQueueArn != null ? !this.gameSessionQueueArn.equals(that.gameSessionQueueArn) : that.gameSessionQueueArn != null) return false;
return this.gameSessionQueueName != null ? this.gameSessionQueueName.equals(that.gameSessionQueueName) : that.gameSessionQueueName == null;
}
@Override
public final int hashCode() {
int result = this.gameSessionQueueArn != null ? this.gameSessionQueueArn.hashCode() : 0;
result = 31 * result + (this.gameSessionQueueName != null ? this.gameSessionQueueName.hashCode() : 0);
return result;
}
}
}