All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.gamelift.model.LocationModel Maven / Gradle / Ivy

/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.gamelift.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Properties of a custom location for use in an Amazon GameLift Anywhere fleet. This data type is returned in response * to a call to https://docs.aws * .amazon.com/gamelift/latest/apireference/API_CreateLocation.html. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LocationModel implements Serializable, Cloneable, StructuredPojo { /** *

* The location's name. *

*/ private String locationName; /** *

* The Amazon Resource Name (ARN) * that is assigned to a Amazon GameLift location resource and uniquely identifies it. ARNs are unique across all * Regions. Format is * arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. *

*/ private String locationArn; /** *

* The location's name. *

* * @param locationName * The location's name. */ public void setLocationName(String locationName) { this.locationName = locationName; } /** *

* The location's name. *

* * @return The location's name. */ public String getLocationName() { return this.locationName; } /** *

* The location's name. *

* * @param locationName * The location's name. * @return Returns a reference to this object so that method calls can be chained together. */ public LocationModel withLocationName(String locationName) { setLocationName(locationName); return this; } /** *

* The Amazon Resource Name (ARN) * that is assigned to a Amazon GameLift location resource and uniquely identifies it. ARNs are unique across all * Regions. Format is * arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. *

* * @param locationArn * The Amazon Resource Name (ARN) that is assigned to a * Amazon GameLift location resource and uniquely identifies it. ARNs are unique across all Regions. Format * is arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. */ public void setLocationArn(String locationArn) { this.locationArn = locationArn; } /** *

* The Amazon Resource Name (ARN) * that is assigned to a Amazon GameLift location resource and uniquely identifies it. ARNs are unique across all * Regions. Format is * arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. *

* * @return The Amazon Resource Name (ARN) that is assigned to a * Amazon GameLift location resource and uniquely identifies it. ARNs are unique across all Regions. Format * is arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. */ public String getLocationArn() { return this.locationArn; } /** *

* The Amazon Resource Name (ARN) * that is assigned to a Amazon GameLift location resource and uniquely identifies it. ARNs are unique across all * Regions. Format is * arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. *

* * @param locationArn * The Amazon Resource Name (ARN) that is assigned to a * Amazon GameLift location resource and uniquely identifies it. ARNs are unique across all Regions. Format * is arn:aws:gamelift:<region>::location/location-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. * @return Returns a reference to this object so that method calls can be chained together. */ public LocationModel withLocationArn(String locationArn) { setLocationArn(locationArn); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getLocationName() != null) sb.append("LocationName: ").append(getLocationName()).append(","); if (getLocationArn() != null) sb.append("LocationArn: ").append(getLocationArn()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LocationModel == false) return false; LocationModel other = (LocationModel) obj; if (other.getLocationName() == null ^ this.getLocationName() == null) return false; if (other.getLocationName() != null && other.getLocationName().equals(this.getLocationName()) == false) return false; if (other.getLocationArn() == null ^ this.getLocationArn() == null) return false; if (other.getLocationArn() != null && other.getLocationArn().equals(this.getLocationArn()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getLocationName() == null) ? 0 : getLocationName().hashCode()); hashCode = prime * hashCode + ((getLocationArn() == null) ? 0 : getLocationArn().hashCode()); return hashCode; } @Override public LocationModel clone() { try { return (LocationModel) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.gamelift.model.transform.LocationModelMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy