Class AWSServiceEndpoint
- java.lang.Object
-
- io.fabric8.openshift.api.model.config.v1.AWSServiceEndpoint
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<AWSServiceEndpointBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class AWSServiceEndpoint extends Object implements io.fabric8.kubernetes.api.builder.Editable<AWSServiceEndpointBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
AWSServiceEndpoint store the configuration of a custom url to override existing defaults of AWS Services.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AWSServiceEndpoint()No args constructor for use in serializationAWSServiceEndpoint(String name, String url)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AWSServiceEndpointBuilderedit()Map<String,Object>getAdditionalProperties()StringgetName()name is the name of the AWS service.StringgetUrl()url is fully qualified URI with scheme https, that overrides the default generated endpoint for a client.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetName(String name)name is the name of the AWS service.voidsetUrl(String url)url is fully qualified URI with scheme https, that overrides the default generated endpoint for a client.AWSServiceEndpointBuildertoBuilder()
-
-
-
Method Detail
-
getName
public String getName()
name is the name of the AWS service. The list of all the service names can be found at https://docs.aws.amazon.com/general/latest/gr/aws-service-information.html This must be provided and cannot be empty.
-
setName
public void setName(String name)
name is the name of the AWS service. The list of all the service names can be found at https://docs.aws.amazon.com/general/latest/gr/aws-service-information.html This must be provided and cannot be empty.
-
getUrl
public String getUrl()
url is fully qualified URI with scheme https, that overrides the default generated endpoint for a client. This must be provided and cannot be empty.
-
setUrl
public void setUrl(String url)
url is fully qualified URI with scheme https, that overrides the default generated endpoint for a client. This must be provided and cannot be empty.
-
edit
public AWSServiceEndpointBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<AWSServiceEndpointBuilder>
-
toBuilder
public AWSServiceEndpointBuilder toBuilder()
-
-