Package com.flowable.spring.boot.aws
Class FlowableAwsProperties
java.lang.Object
com.flowable.spring.boot.aws.FlowableAwsProperties
@ConfigurationProperties(prefix="flowable.aws")
public class FlowableAwsProperties
extends java.lang.Object
Properties for the SQS SDK.
- Author:
- Filip Hrisafov
-
Field Summary
Fields Modifier and Type Field Description protected java.net.URIendpointOverrideThe endpoint with which the AWS SDK should communicate with.protected java.lang.StringregionThe region with which the AWS SDK should communicate. -
Constructor Summary
Constructors Constructor Description FlowableAwsProperties() -
Method Summary
Modifier and Type Method Description java.net.URIgetEndpointOverride()java.lang.StringgetRegion()voidsetEndpointOverride(java.net.URI endpointOverride)voidsetRegion(java.lang.String region)
-
Field Details
-
endpointOverride
protected java.net.URI endpointOverrideThe endpoint with which the AWS SDK should communicate with. This is only needed as an override, by default it is not needed. -
region
protected java.lang.String regionThe region with which the AWS SDK should communicate. By default the SDK will attempt to identify the region automatically. See AWS SDK documentation for more information.
-
-
Constructor Details
-
FlowableAwsProperties
public FlowableAwsProperties()
-
-
Method Details
-
getEndpointOverride
public java.net.URI getEndpointOverride() -
setEndpointOverride
public void setEndpointOverride(java.net.URI endpointOverride) -
getRegion
public java.lang.String getRegion() -
setRegion
public void setRegion(java.lang.String region)
-