@Generated(value="software.amazon.awssdk:codegen") public final class CreateLoadBalancerRequest extends LightsailRequest implements ToCopyableBuilder<CreateLoadBalancerRequest.Builder,CreateLoadBalancerRequest>
Modifier and Type | Class and Description |
---|---|
static interface |
CreateLoadBalancerRequest.Builder |
Modifier and Type | Method and Description |
---|---|
static CreateLoadBalancerRequest.Builder |
builder() |
List<String> |
certificateAlternativeNames()
The optional alternative domains and subdomains to use with your SSL/TLS certificate (e.g.,
www.example.com , example.com , m.example.com , blog.example.com
). |
String |
certificateDomainName()
The domain name with which your certificate is associated (e.g.,
example.com ). |
String |
certificateName()
The name of the SSL/TLS certificate.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj)
Indicates whether some other object is "equal to" this one by SDK fields.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz)
Used to retrieve the value of a field from any class that extends
SdkRequest . |
boolean |
hasCertificateAlternativeNames()
Returns true if the CertificateAlternativeNames property was specified by the sender (it may be empty), or false
if the sender did not specify the value (it will be empty).
|
int |
hashCode() |
boolean |
hasTags()
Returns true if the Tags property was specified by the sender (it may be empty), or false if the sender did not
specify the value (it will be empty).
|
String |
healthCheckPath()
The path you provided to perform the load balancer health check.
|
Integer |
instancePort()
The instance port where you're creating your load balancer.
|
IpAddressType |
ipAddressType()
The IP address type for the load balancer.
|
String |
ipAddressTypeAsString()
The IP address type for the load balancer.
|
String |
loadBalancerName()
The name of your load balancer.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends CreateLoadBalancerRequest.Builder> |
serializableBuilderClass() |
List<Tag> |
tags()
The tag keys and optional values to add to the resource during create.
|
CreateLoadBalancerRequest.Builder |
toBuilder()
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString()
Returns a string representation of this object.
|
overrideConfiguration
copy
public final String loadBalancerName()
The name of your load balancer.
public final Integer instancePort()
The instance port where you're creating your load balancer.
public final String healthCheckPath()
The path you provided to perform the load balancer health check. If you didn't specify a health check path,
Lightsail uses the root path of your website (e.g., "/"
).
You may want to specify a custom health check path other than the root of your application if your home page loads slowly or has a lot of media or scripting on it.
"/"
).
You may want to specify a custom health check path other than the root of your application if your home page loads slowly or has a lot of media or scripting on it.
public final String certificateName()
The name of the SSL/TLS certificate.
If you specify certificateName
, then certificateDomainName
is required (and
vice-versa).
If you specify certificateName
, then certificateDomainName
is required (and
vice-versa).
public final String certificateDomainName()
The domain name with which your certificate is associated (e.g., example.com
).
If you specify certificateDomainName
, then certificateName
is required (and
vice-versa).
example.com
).
If you specify certificateDomainName
, then certificateName
is required (and
vice-versa).
public final boolean hasCertificateAlternativeNames()
public final List<String> certificateAlternativeNames()
The optional alternative domains and subdomains to use with your SSL/TLS certificate (e.g.,
www.example.com
, example.com
, m.example.com
, blog.example.com
).
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasCertificateAlternativeNames()
to see if a value was sent in this field.
www.example.com
, example.com
, m.example.com
,
blog.example.com
).public final boolean hasTags()
public final List<Tag> tags()
The tag keys and optional values to add to the resource during create.
Use the TagResource
action to tag a resource after it's created.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasTags()
to see if a value was sent in this field.
Use the TagResource
action to tag a resource after it's created.
public final IpAddressType ipAddressType()
The IP address type for the load balancer.
The possible values are ipv4
for IPv4 only, and dualstack
for IPv4 and IPv6.
The default value is dualstack
.
If the service returns an enum value that is not available in the current SDK version, ipAddressType
will return IpAddressType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available from
ipAddressTypeAsString()
.
The possible values are ipv4
for IPv4 only, and dualstack
for IPv4 and IPv6.
The default value is dualstack
.
IpAddressType
public final String ipAddressTypeAsString()
The IP address type for the load balancer.
The possible values are ipv4
for IPv4 only, and dualstack
for IPv4 and IPv6.
The default value is dualstack
.
If the service returns an enum value that is not available in the current SDK version, ipAddressType
will return IpAddressType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available from
ipAddressTypeAsString()
.
The possible values are ipv4
for IPv4 only, and dualstack
for IPv4 and IPv6.
The default value is dualstack
.
IpAddressType
public CreateLoadBalancerRequest.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<CreateLoadBalancerRequest.Builder,CreateLoadBalancerRequest>
toBuilder
in class LightsailRequest
public static CreateLoadBalancerRequest.Builder builder()
public static Class<? extends CreateLoadBalancerRequest.Builder> serializableBuilderClass()
public final int hashCode()
hashCode
in class AwsRequest
public final boolean equals(Object obj)
equals
in class AwsRequest
public final boolean equalsBySdkFields(Object obj)
SdkPojo
SdkPojo
class,
and is generated based on a service model.
If an SdkPojo
class does not have any inherited fields, equalsBySdkFields
and equals
are essentially the same.
equalsBySdkFields
in interface SdkPojo
obj
- the object to be compared withpublic final String toString()
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
SdkRequest
SdkRequest
. The field name
specified should match the member name from the corresponding service-2.json model specified in the
codegen-resources folder for a given service. The class specifies what class to cast the returned value to.
If the returned value is also a modeled class, the SdkRequest.getValueForField(String, Class)
method will
again be available.getValueForField
in class SdkRequest
fieldName
- The name of the member to be retrieved.clazz
- The class to cast the returned object to.