Class IAM2Configuration
- java.lang.Object
-
- org.apache.camel.component.aws2.iam.IAM2Configuration
-
-
Constructor Summary
Constructors Constructor Description IAM2Configuration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IAM2Configuration
copy()
String
getAccessKey()
software.amazon.awssdk.services.iam.IamClient
getIamClient()
IAM2Operations
getOperation()
String
getProxyHost()
Integer
getProxyPort()
software.amazon.awssdk.core.Protocol
getProxyProtocol()
String
getRegion()
String
getSecretKey()
String
getUriEndpointOverride()
boolean
isOverrideEndpoint()
boolean
isPojoRequest()
boolean
isTrustAllCertificates()
Boolean
isUseDefaultCredentialsProvider()
void
setAccessKey(String accessKey)
Amazon AWS Access Keyvoid
setIamClient(software.amazon.awssdk.services.iam.IamClient iamClient)
To use a existing configured AWS IAM as clientvoid
setOperation(IAM2Operations operation)
The operation to perform.void
setOverrideEndpoint(boolean overrideEndpoint)
Set the need for overidding the endpoint.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 IAM clientvoid
setProxyPort(Integer proxyPort)
To define a proxy port when instantiating the IAM clientvoid
setProxyProtocol(software.amazon.awssdk.core.Protocol proxyProtocol)
To define a proxy protocol when instantiating the IAM clientvoid
setRegion(String region)
The region in which IAM 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 endpointvoid
setUriEndpointOverride(String uriEndpointOverride)
Set the overriding uri endpoint.void
setUseDefaultCredentialsProvider(Boolean useDefaultCredentialsProvider)
Set whether the IAM client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.
-
-
-
Method Detail
-
getIamClient
public software.amazon.awssdk.services.iam.IamClient getIamClient()
-
setIamClient
public void setIamClient(software.amazon.awssdk.services.iam.IamClient iamClient)
To use a existing configured AWS IAM 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 IAM2Operations getOperation()
-
setOperation
public void setOperation(IAM2Operations operation)
The operation to perform. You can configure a default operation on the component level, or the operation as part of the endpoint, or via a message header with the key CamelAwsIAMOperation.
-
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 IAM client
-
getProxyHost
public String getProxyHost()
-
setProxyHost
public void setProxyHost(String proxyHost)
To define a proxy host when instantiating the IAM client
-
getProxyPort
public Integer getProxyPort()
-
setProxyPort
public void setProxyPort(Integer proxyPort)
To define a proxy port when instantiating the IAM client
-
getRegion
public String getRegion()
-
setRegion
public void setRegion(String region)
The region in which IAM 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
-
isOverrideEndpoint
public boolean isOverrideEndpoint()
-
setOverrideEndpoint
public void setOverrideEndpoint(boolean overrideEndpoint)
Set the need for overidding the endpoint. This option needs to be used in combination with uriEndpointOverride option
-
getUriEndpointOverride
public String getUriEndpointOverride()
-
setUriEndpointOverride
public void setUriEndpointOverride(String uriEndpointOverride)
Set the overriding uri endpoint. This option needs to be used in combination with overrideEndpoint option
-
setUseDefaultCredentialsProvider
public void setUseDefaultCredentialsProvider(Boolean useDefaultCredentialsProvider)
Set whether the IAM client should expect to load credentials through a default credentials provider or to expect static credentials to be passed in.
-
isUseDefaultCredentialsProvider
public Boolean isUseDefaultCredentialsProvider()
-
copy
public IAM2Configuration copy()
-
-