public class GatewayInfo
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Describes a gateway object.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
gatewayARN
The Amazon Resource Name (ARN) of the gateway.
|
private java.lang.String |
gatewayId
The unique identifier assigned to your gateway during activation.
|
private java.lang.String |
gatewayName
The name of the gateway.
|
private java.lang.String |
gatewayOperationalState
The state of the gateway.
|
private java.lang.String |
gatewayType
The type of the gateway.
|
Constructor and Description |
---|
GatewayInfo() |
Modifier and Type | Method and Description |
---|---|
GatewayInfo |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getGatewayARN()
The Amazon Resource Name (ARN) of the gateway.
|
java.lang.String |
getGatewayId()
The unique identifier assigned to your gateway during activation.
|
java.lang.String |
getGatewayName()
The name of the gateway.
|
java.lang.String |
getGatewayOperationalState()
The state of the gateway.
|
java.lang.String |
getGatewayType()
The type of the gateway.
|
int |
hashCode() |
void |
setGatewayARN(java.lang.String gatewayARN)
The Amazon Resource Name (ARN) of the gateway.
|
void |
setGatewayId(java.lang.String gatewayId)
The unique identifier assigned to your gateway during activation.
|
void |
setGatewayName(java.lang.String gatewayName)
The name of the gateway.
|
void |
setGatewayOperationalState(java.lang.String gatewayOperationalState)
The state of the gateway.
|
void |
setGatewayType(java.lang.String gatewayType)
The type of the gateway.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GatewayInfo |
withGatewayARN(java.lang.String gatewayARN)
The Amazon Resource Name (ARN) of the gateway.
|
GatewayInfo |
withGatewayId(java.lang.String gatewayId)
The unique identifier assigned to your gateway during activation.
|
GatewayInfo |
withGatewayName(java.lang.String gatewayName)
The name of the gateway.
|
GatewayInfo |
withGatewayOperationalState(java.lang.String gatewayOperationalState)
The state of the gateway.
|
GatewayInfo |
withGatewayType(java.lang.String gatewayType)
The type of the gateway.
|
private java.lang.String gatewayId
The unique identifier assigned to your gateway during activation. This ID becomes part of the gateway Amazon Resource Name (ARN), which you use as input for other operations.
private java.lang.String gatewayARN
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.
private java.lang.String gatewayType
The type of the gateway.
private java.lang.String gatewayOperationalState
The state of the gateway.
Valid Values: DISABLED or ACTIVE
private java.lang.String gatewayName
The name of the gateway.
public void setGatewayId(java.lang.String gatewayId)
The unique identifier assigned to your gateway during activation. This ID becomes part of the gateway Amazon Resource Name (ARN), which you use as input for other operations.
gatewayId
- The unique identifier assigned to your gateway during activation.
This ID becomes part of the gateway Amazon Resource Name (ARN),
which you use as input for other operations.public java.lang.String getGatewayId()
The unique identifier assigned to your gateway during activation. This ID becomes part of the gateway Amazon Resource Name (ARN), which you use as input for other operations.
public GatewayInfo withGatewayId(java.lang.String gatewayId)
The unique identifier assigned to your gateway during activation. This ID becomes part of the gateway Amazon Resource Name (ARN), which you use as input for other operations.
gatewayId
- The unique identifier assigned to your gateway during activation.
This ID becomes part of the gateway Amazon Resource Name (ARN),
which you use as input for other operations.public void setGatewayARN(java.lang.String gatewayARN)
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.
gatewayARN
- The Amazon Resource Name (ARN) of the gateway. Use the
ListGateways operation to return a list of gateways for
your account and region.public java.lang.String getGatewayARN()
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.
public GatewayInfo withGatewayARN(java.lang.String gatewayARN)
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.
gatewayARN
- The Amazon Resource Name (ARN) of the gateway. Use the
ListGateways operation to return a list of gateways for
your account and region.public void setGatewayType(java.lang.String gatewayType)
The type of the gateway.
gatewayType
- The type of the gateway.public java.lang.String getGatewayType()
The type of the gateway.
public GatewayInfo withGatewayType(java.lang.String gatewayType)
The type of the gateway.
gatewayType
- The type of the gateway.public void setGatewayOperationalState(java.lang.String gatewayOperationalState)
The state of the gateway.
Valid Values: DISABLED or ACTIVE
gatewayOperationalState
- The state of the gateway.
Valid Values: DISABLED or ACTIVE
public java.lang.String getGatewayOperationalState()
The state of the gateway.
Valid Values: DISABLED or ACTIVE
Valid Values: DISABLED or ACTIVE
public GatewayInfo withGatewayOperationalState(java.lang.String gatewayOperationalState)
The state of the gateway.
Valid Values: DISABLED or ACTIVE
gatewayOperationalState
- The state of the gateway.
Valid Values: DISABLED or ACTIVE
public void setGatewayName(java.lang.String gatewayName)
The name of the gateway.
gatewayName
- The name of the gateway.public java.lang.String getGatewayName()
The name of the gateway.
public GatewayInfo withGatewayName(java.lang.String gatewayName)
The name of the gateway.
gatewayName
- The name of the gateway.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public GatewayInfo clone()
clone
in class java.lang.Object