Package com.mongodb.crypt.capi
Class MongoAwsKmsProviderOptions
- java.lang.Object
-
- com.mongodb.crypt.capi.MongoAwsKmsProviderOptions
-
public class MongoAwsKmsProviderOptions extends java.lang.ObjectThe options for configuring the AWS KMS provider.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMongoAwsKmsProviderOptions.BuilderThe builder for the options
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MongoAwsKmsProviderOptions.Builderbuilder()Construct a builder for the optionsjava.lang.StringgetAccessKeyId()Gets the access key idjava.lang.StringgetSecretAccessKey()Gets the secret access key
-
-
-
Method Detail
-
builder
public static MongoAwsKmsProviderOptions.Builder builder()
Construct a builder for the options- Returns:
- the builder
-
getAccessKeyId
public java.lang.String getAccessKeyId()
Gets the access key id- Returns:
- the access key id, which may not be null
-
getSecretAccessKey
public java.lang.String getSecretAccessKey()
Gets the secret access key- Returns:
- the secret access key, which may not be null
-
-