/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.databasemigrationservice.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ImportCertificateRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII * letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens. *
*/ private String certificateIdentifier; /** *
* The contents of a .pem
file, which contains an X.509 certificate.
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
* The tags associated with the certificate. *
*/ private java.util.List* A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII * letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens. *
* * @param certificateIdentifier * A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only * ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens. */ public void setCertificateIdentifier(String certificateIdentifier) { this.certificateIdentifier = certificateIdentifier; } /** ** A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII * letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens. *
* * @return A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only * ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens. */ public String getCertificateIdentifier() { return this.certificateIdentifier; } /** ** A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII * letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens. *
* * @param certificateIdentifier * A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only * ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportCertificateRequest withCertificateIdentifier(String certificateIdentifier) { setCertificateIdentifier(certificateIdentifier); return this; } /** *
* The contents of a .pem
file, which contains an X.509 certificate.
*
.pem
file, which contains an X.509 certificate.
*/
public void setCertificatePem(String certificatePem) {
this.certificatePem = certificatePem;
}
/**
*
* The contents of a .pem
file, which contains an X.509 certificate.
*
.pem
file, which contains an X.509 certificate.
*/
public String getCertificatePem() {
return this.certificatePem;
}
/**
*
* The contents of a .pem
file, which contains an X.509 certificate.
*
.pem
file, which contains an X.509 certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportCertificateRequest withCertificatePem(String certificatePem) {
setCertificatePem(certificatePem);
return this;
}
/**
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *
** Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will * be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or * ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future * major version of the SDK. *
* * @param certificateWallet * The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a *.sso
file using the fileb://
prefix. You can't provide the certificate
* inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*/
public void setCertificateWallet(java.nio.ByteBuffer certificateWallet) {
this.certificateWallet = certificateWallet;
}
/**
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
* {@code ByteBuffer}s are stateful. Calling their {@code get} methods changes their {@code position}. We recommend * using {@link java.nio.ByteBuffer#asReadOnlyBuffer()} to create a read-only view of the buffer with an independent * {@code position}, and calling {@code get} methods on this rather than directly on the returned {@code ByteBuffer}. * Doing so will ensure that anyone else using the {@code ByteBuffer} will not be affected by changes to the * {@code position}. *
* * @return The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a *.sso
file using the fileb://
prefix. You can't provide the certificate
* inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*/
public java.nio.ByteBuffer getCertificateWallet() {
return this.certificateWallet;
}
/**
*
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso
* file using the fileb://
prefix. You can't provide the certificate inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
*
* The AWS SDK for Java performs a Base64 encoding on this field before sending this request to the AWS service. * Users of the SDK should not perform Base64 encoding on this field. *
** Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will * be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or * ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future * major version of the SDK. *
* * @param certificateWallet * The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a *.sso
file using the fileb://
prefix. You can't provide the certificate
* inline.
*
* Example: filebase64("${path.root}/rds-ca-2019-root.sso")
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ImportCertificateRequest withCertificateWallet(java.nio.ByteBuffer certificateWallet) {
setCertificateWallet(certificateWallet);
return this;
}
/**
*
* The tags associated with the certificate. *
* * @return The tags associated with the certificate. */ public java.util.List* The tags associated with the certificate. *
* * @param tags * The tags associated with the certificate. */ public void setTags(java.util.Collection* The tags associated with the certificate. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * The tags associated with the certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportCertificateRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* The tags associated with the certificate. *
* * @param tags * The tags associated with the certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportCertificateRequest withTags(java.util.Collection