com.amazonaws.services.elasticloadbalancing.model
Class SetLoadBalancerListenerSSLCertificateRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.elasticloadbalancing.model.SetLoadBalancerListenerSSLCertificateRequest
All Implemented Interfaces:
java.io.Serializable

public class SetLoadBalancerListenerSSLCertificateRequest
extends AmazonWebServiceRequest
implements java.io.Serializable

Container for the parameters to the SetLoadBalancerListenerSSLCertificate operation.

Sets the certificate that terminates the specified listener's SSL connections. The specified certificate replaces any prior certificate that was used on the same load balancer and port.

For more information on updating your SSL certificate, see Updating an SSL Certificate for a Load Balancer in the Elastic Load Balancing Developer Guide .

See Also:
AmazonElasticLoadBalancing.setLoadBalancerListenerSSLCertificate(SetLoadBalancerListenerSSLCertificateRequest), Serialized Form

Constructor Summary
SetLoadBalancerListenerSSLCertificateRequest()
          Default constructor for a new SetLoadBalancerListenerSSLCertificateRequest object.
SetLoadBalancerListenerSSLCertificateRequest(java.lang.String loadBalancerName, java.lang.Integer loadBalancerPort, java.lang.String sSLCertificateId)
          Constructs a new SetLoadBalancerListenerSSLCertificateRequest object.
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 java.lang.String getLoadBalancerName()
          The name of the load balancer.
 java.lang.Integer getLoadBalancerPort()
          The port that uses the specified SSL certificate.
 java.lang.String getSSLCertificateId()
          The Amazon Resource Number (ARN) of the SSL certificate chain to use.
 int hashCode()
           
 void setLoadBalancerName(java.lang.String loadBalancerName)
          The name of the load balancer.
 void setLoadBalancerPort(java.lang.Integer loadBalancerPort)
          The port that uses the specified SSL certificate.
 void setSSLCertificateId(java.lang.String sSLCertificateId)
          The Amazon Resource Number (ARN) of the SSL certificate chain to use.
 java.lang.String toString()
          Returns a string representation of this object; useful for testing and debugging.
 SetLoadBalancerListenerSSLCertificateRequest withLoadBalancerName(java.lang.String loadBalancerName)
          The name of the load balancer.
 SetLoadBalancerListenerSSLCertificateRequest withLoadBalancerPort(java.lang.Integer loadBalancerPort)
          The port that uses the specified SSL certificate.
 SetLoadBalancerListenerSSLCertificateRequest withSSLCertificateId(java.lang.String sSLCertificateId)
          The Amazon Resource Number (ARN) of the SSL certificate chain to use.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getDelegationToken, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setDelegationToken, setRequestCredentials, setRequestMetricCollector, withRequestMetricCollector
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SetLoadBalancerListenerSSLCertificateRequest

public SetLoadBalancerListenerSSLCertificateRequest()
Default constructor for a new SetLoadBalancerListenerSSLCertificateRequest object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.


SetLoadBalancerListenerSSLCertificateRequest

public SetLoadBalancerListenerSSLCertificateRequest(java.lang.String loadBalancerName,
                                                    java.lang.Integer loadBalancerPort,
                                                    java.lang.String sSLCertificateId)
Constructs a new SetLoadBalancerListenerSSLCertificateRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters:
loadBalancerName - The name of the load balancer.
loadBalancerPort - The port that uses the specified SSL certificate.
sSLCertificateId - The Amazon Resource Number (ARN) of the SSL certificate chain to use. For more information on SSL certificates, see Managing Server Certificates in the AWS Identity and Access Management User Guide.
Method Detail

getLoadBalancerName

public java.lang.String getLoadBalancerName()
The name of the load balancer.

Returns:
The name of the load balancer.

setLoadBalancerName

public void setLoadBalancerName(java.lang.String loadBalancerName)
The name of the load balancer.

Parameters:
loadBalancerName - The name of the load balancer.

withLoadBalancerName

public SetLoadBalancerListenerSSLCertificateRequest withLoadBalancerName(java.lang.String loadBalancerName)
The name of the load balancer.

Returns a reference to this object so that method calls can be chained together.

Parameters:
loadBalancerName - The name of the load balancer.
Returns:
A reference to this updated object so that method calls can be chained together.

getLoadBalancerPort

public java.lang.Integer getLoadBalancerPort()
The port that uses the specified SSL certificate.

Returns:
The port that uses the specified SSL certificate.

setLoadBalancerPort

public void setLoadBalancerPort(java.lang.Integer loadBalancerPort)
The port that uses the specified SSL certificate.

Parameters:
loadBalancerPort - The port that uses the specified SSL certificate.

withLoadBalancerPort

public SetLoadBalancerListenerSSLCertificateRequest withLoadBalancerPort(java.lang.Integer loadBalancerPort)
The port that uses the specified SSL certificate.

Returns a reference to this object so that method calls can be chained together.

Parameters:
loadBalancerPort - The port that uses the specified SSL certificate.
Returns:
A reference to this updated object so that method calls can be chained together.

getSSLCertificateId

public java.lang.String getSSLCertificateId()
The Amazon Resource Number (ARN) of the SSL certificate chain to use. For more information on SSL certificates, see Managing Server Certificates in the AWS Identity and Access Management User Guide.

Returns:
The Amazon Resource Number (ARN) of the SSL certificate chain to use. For more information on SSL certificates, see Managing Server Certificates in the AWS Identity and Access Management User Guide.

setSSLCertificateId

public void setSSLCertificateId(java.lang.String sSLCertificateId)
The Amazon Resource Number (ARN) of the SSL certificate chain to use. For more information on SSL certificates, see Managing Server Certificates in the AWS Identity and Access Management User Guide.

Parameters:
sSLCertificateId - The Amazon Resource Number (ARN) of the SSL certificate chain to use. For more information on SSL certificates, see Managing Server Certificates in the AWS Identity and Access Management User Guide.

withSSLCertificateId

public SetLoadBalancerListenerSSLCertificateRequest withSSLCertificateId(java.lang.String sSLCertificateId)
The Amazon Resource Number (ARN) of the SSL certificate chain to use. For more information on SSL certificates, see Managing Server Certificates in the AWS Identity and Access Management User Guide.

Returns a reference to this object so that method calls can be chained together.

Parameters:
sSLCertificateId - The Amazon Resource Number (ARN) of the SSL certificate chain to use. For more information on SSL certificates, see Managing Server Certificates in the AWS Identity and Access Management User Guide.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public java.lang.String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class java.lang.Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.