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.URI endpointOverride
    The endpoint with which the AWS SDK should communicate with.
    protected java.lang.String region
    The region with which the AWS SDK should communicate.
  • Constructor Summary

    Constructors 
    Constructor Description
    FlowableAwsProperties()  
  • Method Summary

    Modifier and Type Method Description
    java.net.URI getEndpointOverride()  
    java.lang.String getRegion()  
    void setEndpointOverride​(java.net.URI endpointOverride)  
    void setRegion​(java.lang.String region)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • endpointOverride

      protected java.net.URI endpointOverride
      The 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 region
      The 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

  • Method Details