software.amazon.awscdk.services.gamelift.alpha.GameServerGroupAttributes Maven / Gradle / Ivy
Show all versions of gamelift-alpha Show documentation
package software.amazon.awscdk.services.gamelift.alpha;
/**
* (experimental) Represents a GameServerGroup content defined outside of this stack.
*
* 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.*;
* import software.amazon.awscdk.services.iam.*;
* Role role;
* GameServerGroupAttributes gameServerGroupAttributes = GameServerGroupAttributes.builder()
* .autoScalingGroupArn("autoScalingGroupArn")
* // the properties below are optional
* .gameServerGroupArn("gameServerGroupArn")
* .gameServerGroupName("gameServerGroupName")
* .role(role)
* .build();
*
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.102.0 (build e354887)", date = "2024-08-23T05:56:25.506Z")
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.gamelift.alpha.$Module.class, fqn = "@aws-cdk/aws-gamelift-alpha.GameServerGroupAttributes")
@software.amazon.jsii.Jsii.Proxy(GameServerGroupAttributes.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface GameServerGroupAttributes extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) The ARN of the generated AutoScaling group.
*
* Default: the imported game server group does not have autoscaling group information
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getAutoScalingGroupArn();
/**
* (experimental) The ARN of the game server group.
*
* At least one of gameServerGroupArn
and gameServerGroupName
must be provided.
*
* Default: derived from `gameServerGroupName`.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getGameServerGroupArn() {
return null;
}
/**
* (experimental) The name of the game server group.
*
* At least one of gameServerGroupArn
and gameServerGroupName
must be provided.
*
* Default: derived from `gameServerGroupArn`.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getGameServerGroupName() {
return null;
}
/**
* (experimental) The IAM role that allows Amazon GameLift to access your Amazon EC2 Auto Scaling groups.
*
* Default: the imported game server group cannot be granted access to other resources as an `iam.IGrantable`.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.iam.IRole getRole() {
return null;
}
/**
* @return a {@link Builder} of {@link GameServerGroupAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link GameServerGroupAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String autoScalingGroupArn;
java.lang.String gameServerGroupArn;
java.lang.String gameServerGroupName;
software.amazon.awscdk.services.iam.IRole role;
/**
* Sets the value of {@link GameServerGroupAttributes#getAutoScalingGroupArn}
* @param autoScalingGroupArn The ARN of the generated AutoScaling group. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder autoScalingGroupArn(java.lang.String autoScalingGroupArn) {
this.autoScalingGroupArn = autoScalingGroupArn;
return this;
}
/**
* Sets the value of {@link GameServerGroupAttributes#getGameServerGroupArn}
* @param gameServerGroupArn The ARN of the game server group.
* At least one of gameServerGroupArn
and gameServerGroupName
must be provided.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder gameServerGroupArn(java.lang.String gameServerGroupArn) {
this.gameServerGroupArn = gameServerGroupArn;
return this;
}
/**
* Sets the value of {@link GameServerGroupAttributes#getGameServerGroupName}
* @param gameServerGroupName The name of the game server group.
* At least one of gameServerGroupArn
and gameServerGroupName
must be provided.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder gameServerGroupName(java.lang.String gameServerGroupName) {
this.gameServerGroupName = gameServerGroupName;
return this;
}
/**
* Sets the value of {@link GameServerGroupAttributes#getRole}
* @param role The IAM role that allows Amazon GameLift to access your Amazon EC2 Auto Scaling groups.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder role(software.amazon.awscdk.services.iam.IRole role) {
this.role = role;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link GameServerGroupAttributes}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public GameServerGroupAttributes build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link GameServerGroupAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements GameServerGroupAttributes {
private final java.lang.String autoScalingGroupArn;
private final java.lang.String gameServerGroupArn;
private final java.lang.String gameServerGroupName;
private final software.amazon.awscdk.services.iam.IRole role;
/**
* 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.autoScalingGroupArn = software.amazon.jsii.Kernel.get(this, "autoScalingGroupArn", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.gameServerGroupArn = software.amazon.jsii.Kernel.get(this, "gameServerGroupArn", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.gameServerGroupName = software.amazon.jsii.Kernel.get(this, "gameServerGroupName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.role = software.amazon.jsii.Kernel.get(this, "role", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.iam.IRole.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.autoScalingGroupArn = java.util.Objects.requireNonNull(builder.autoScalingGroupArn, "autoScalingGroupArn is required");
this.gameServerGroupArn = builder.gameServerGroupArn;
this.gameServerGroupName = builder.gameServerGroupName;
this.role = builder.role;
}
@Override
public final java.lang.String getAutoScalingGroupArn() {
return this.autoScalingGroupArn;
}
@Override
public final java.lang.String getGameServerGroupArn() {
return this.gameServerGroupArn;
}
@Override
public final java.lang.String getGameServerGroupName() {
return this.gameServerGroupName;
}
@Override
public final software.amazon.awscdk.services.iam.IRole getRole() {
return this.role;
}
@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();
data.set("autoScalingGroupArn", om.valueToTree(this.getAutoScalingGroupArn()));
if (this.getGameServerGroupArn() != null) {
data.set("gameServerGroupArn", om.valueToTree(this.getGameServerGroupArn()));
}
if (this.getGameServerGroupName() != null) {
data.set("gameServerGroupName", om.valueToTree(this.getGameServerGroupName()));
}
if (this.getRole() != null) {
data.set("role", om.valueToTree(this.getRole()));
}
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.GameServerGroupAttributes"));
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;
GameServerGroupAttributes.Jsii$Proxy that = (GameServerGroupAttributes.Jsii$Proxy) o;
if (!autoScalingGroupArn.equals(that.autoScalingGroupArn)) return false;
if (this.gameServerGroupArn != null ? !this.gameServerGroupArn.equals(that.gameServerGroupArn) : that.gameServerGroupArn != null) return false;
if (this.gameServerGroupName != null ? !this.gameServerGroupName.equals(that.gameServerGroupName) : that.gameServerGroupName != null) return false;
return this.role != null ? this.role.equals(that.role) : that.role == null;
}
@Override
public final int hashCode() {
int result = this.autoScalingGroupArn.hashCode();
result = 31 * result + (this.gameServerGroupArn != null ? this.gameServerGroupArn.hashCode() : 0);
result = 31 * result + (this.gameServerGroupName != null ? this.gameServerGroupName.hashCode() : 0);
result = 31 * result + (this.role != null ? this.role.hashCode() : 0);
return result;
}
}
}