Class MQ2Configuration
- java.lang.Object
-
- org.apache.camel.component.aws2.mq.MQ2Configuration
-
-
Constructor Summary
Constructors Constructor Description MQ2Configuration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MQ2Configuration
copy()
String
getAccessKey()
software.amazon.awssdk.services.mq.MqClient
getAmazonMqClient()
MQ2Operations
getOperation()
String
getProxyHost()
Integer
getProxyPort()
software.amazon.awssdk.core.Protocol
getProxyProtocol()
String
getRegion()
String
getSecretKey()
boolean
isPojoRequest()
boolean
isTrustAllCertificates()
void
setAccessKey(String accessKey)
Amazon AWS Access Keyvoid
setAmazonMqClient(software.amazon.awssdk.services.mq.MqClient amazonMqClient)
To use a existing configured AmazonMQClient as clientvoid
setOperation(MQ2Operations operation)
The operation to perform.void
setPojoRequest(boolean pojoRequest)
If we want to use a POJO request as body or notvoid
setProxyHost(String proxyHost)
To define a proxy host when instantiating the MQ clientvoid
setProxyPort(Integer proxyPort)
To define a proxy port when instantiating the MQ clientvoid
setProxyProtocol(software.amazon.awssdk.core.Protocol proxyProtocol)
To define a proxy protocol when instantiating the MQ clientvoid
setRegion(String region)
The region in which MQ client needs to work.void
setSecretKey(String secretKey)
Amazon AWS Secret Keyvoid
setTrustAllCertificates(boolean trustAllCertificates)
If we want to trust all certificates in case of overriding the endpoint
-
-
-
Method Detail
-
getAmazonMqClient
public software.amazon.awssdk.services.mq.MqClient getAmazonMqClient()
-
setAmazonMqClient
public void setAmazonMqClient(software.amazon.awssdk.services.mq.MqClient amazonMqClient)
To use a existing configured AmazonMQClient as client
-
getAccessKey
public String getAccessKey()
-
setAccessKey
public void setAccessKey(String accessKey)
Amazon AWS Access Key
-
getSecretKey
public String getSecretKey()
-
setSecretKey
public void setSecretKey(String secretKey)
Amazon AWS Secret Key
-
getOperation
public MQ2Operations getOperation()
-
setOperation
public void setOperation(MQ2Operations operation)
The operation to perform. It can be listBrokers,createBroker,deleteBroker
-
getProxyProtocol
public software.amazon.awssdk.core.Protocol getProxyProtocol()
-
setProxyProtocol
public void setProxyProtocol(software.amazon.awssdk.core.Protocol proxyProtocol)
To define a proxy protocol when instantiating the MQ client
-
getProxyHost
public String getProxyHost()
-
setProxyHost
public void setProxyHost(String proxyHost)
To define a proxy host when instantiating the MQ client
-
getProxyPort
public Integer getProxyPort()
-
setProxyPort
public void setProxyPort(Integer proxyPort)
To define a proxy port when instantiating the MQ client
-
getRegion
public String getRegion()
-
setRegion
public void setRegion(String region)
The region in which MQ client needs to work. When using this parameter, the configuration will expect the lowercase name of the region (for example ap-east-1) You'll need to use the name Region.EU_WEST_1.id()
-
isPojoRequest
public boolean isPojoRequest()
-
setPojoRequest
public void setPojoRequest(boolean pojoRequest)
If we want to use a POJO request as body or not
-
isTrustAllCertificates
public boolean isTrustAllCertificates()
-
setTrustAllCertificates
public void setTrustAllCertificates(boolean trustAllCertificates)
If we want to trust all certificates in case of overriding the endpoint
-
copy
public MQ2Configuration copy()
-
-