/* * 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.ec2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; import com.amazonaws.Request; import com.amazonaws.services.ec2.model.transform.CopyImageRequestMarshaller; /** *
* Contains the parameters for CopyImage. *
*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CopyImageRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest* Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring * idempotency in the Amazon EC2 API Reference. *
*/ private String clientToken; /** ** A description for the new AMI in the destination Region. *
*/ private String description; /** *
* Specifies whether the destination snapshots of the copied image should be encrypted. You can encrypt a copy of an
* unencrypted snapshot, but you cannot create an unencrypted copy of an encrypted snapshot. The default KMS key for
* Amazon EBS is used unless you specify a non-default Key Management Service (KMS) KMS key using
* KmsKeyId
. For more information, see Amazon EBS encryption in the
* Amazon EC2 User Guide.
*
* The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted volumes. If
* this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used. If you specify
* a KMS key, you must also set the encrypted state to true
.
*
* You can specify a KMS key using any of the following: *
** Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab. *
** Key alias. For example, alias/ExampleAlias. *
** Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab. *
** Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias. *
** Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that is not * valid, the action can appear to complete, but eventually fails. *
** The specified KMS key must exist in the destination Region. *
** Amazon EBS does not support asymmetric KMS keys. *
*/ private String kmsKeyId; /** ** The name of the new AMI in the destination Region. *
*/ private String name; /** ** The ID of the AMI to copy. *
*/ private String sourceImageId; /** ** The name of the Region that contains the AMI to copy. *
*/ private String sourceRegion; /** ** The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when copying * an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the destination * Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same * Outpost. *
** For more information, see Copy AMIs from an * Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide. *
*/ private String destinationOutpostArn; /** ** Indicates whether to include your user-defined AMI tags when copying the AMI. *
** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. *
*/ private Boolean copyImageTags; /** ** Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring * idempotency in the Amazon EC2 API Reference. *
* * @param clientToken * Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, * see Ensuring * idempotency in the Amazon EC2 API Reference. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** ** Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring * idempotency in the Amazon EC2 API Reference. *
* * @return Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, * see Ensuring * idempotency in the Amazon EC2 API Reference. */ public String getClientToken() { return this.clientToken; } /** ** Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring * idempotency in the Amazon EC2 API Reference. *
* * @param clientToken * Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, * see Ensuring * idempotency in the Amazon EC2 API Reference. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** ** A description for the new AMI in the destination Region. *
* * @param description * A description for the new AMI in the destination Region. */ public void setDescription(String description) { this.description = description; } /** ** A description for the new AMI in the destination Region. *
* * @return A description for the new AMI in the destination Region. */ public String getDescription() { return this.description; } /** ** A description for the new AMI in the destination Region. *
* * @param description * A description for the new AMI in the destination Region. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withDescription(String description) { setDescription(description); return this; } /** *
* Specifies whether the destination snapshots of the copied image should be encrypted. You can encrypt a copy of an
* unencrypted snapshot, but you cannot create an unencrypted copy of an encrypted snapshot. The default KMS key for
* Amazon EBS is used unless you specify a non-default Key Management Service (KMS) KMS key using
* KmsKeyId
. For more information, see Amazon EBS encryption in the
* Amazon EC2 User Guide.
*
KmsKeyId
. For more information, see Amazon EBS encryption in
* the Amazon EC2 User Guide.
*/
public void setEncrypted(Boolean encrypted) {
this.encrypted = encrypted;
}
/**
*
* Specifies whether the destination snapshots of the copied image should be encrypted. You can encrypt a copy of an
* unencrypted snapshot, but you cannot create an unencrypted copy of an encrypted snapshot. The default KMS key for
* Amazon EBS is used unless you specify a non-default Key Management Service (KMS) KMS key using
* KmsKeyId
. For more information, see Amazon EBS encryption in the
* Amazon EC2 User Guide.
*
KmsKeyId
. For more information, see Amazon EBS encryption
* in the Amazon EC2 User Guide.
*/
public Boolean getEncrypted() {
return this.encrypted;
}
/**
*
* Specifies whether the destination snapshots of the copied image should be encrypted. You can encrypt a copy of an
* unencrypted snapshot, but you cannot create an unencrypted copy of an encrypted snapshot. The default KMS key for
* Amazon EBS is used unless you specify a non-default Key Management Service (KMS) KMS key using
* KmsKeyId
. For more information, see Amazon EBS encryption in the
* Amazon EC2 User Guide.
*
KmsKeyId
. For more information, see Amazon EBS encryption in
* the Amazon EC2 User Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CopyImageRequest withEncrypted(Boolean encrypted) {
setEncrypted(encrypted);
return this;
}
/**
*
* Specifies whether the destination snapshots of the copied image should be encrypted. You can encrypt a copy of an
* unencrypted snapshot, but you cannot create an unencrypted copy of an encrypted snapshot. The default KMS key for
* Amazon EBS is used unless you specify a non-default Key Management Service (KMS) KMS key using
* KmsKeyId
. For more information, see Amazon EBS encryption in the
* Amazon EC2 User Guide.
*
KmsKeyId
. For more information, see Amazon EBS encryption
* in the Amazon EC2 User Guide.
*/
public Boolean isEncrypted() {
return this.encrypted;
}
/**
*
* The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted volumes. If
* this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used. If you specify
* a KMS key, you must also set the encrypted state to true
.
*
* You can specify a KMS key using any of the following: *
** Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab. *
** Key alias. For example, alias/ExampleAlias. *
** Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab. *
** Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias. *
** Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that is not * valid, the action can appear to complete, but eventually fails. *
** The specified KMS key must exist in the destination Region. *
** Amazon EBS does not support asymmetric KMS keys. *
* * @param kmsKeyId * The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted * volumes. If this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is * used. If you specify a KMS key, you must also set the encrypted state totrue
.
* * You can specify a KMS key using any of the following: *
** Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab. *
** Key alias. For example, alias/ExampleAlias. *
** Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab. *
** Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias. *
** Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that * is not valid, the action can appear to complete, but eventually fails. *
** The specified KMS key must exist in the destination Region. *
** Amazon EBS does not support asymmetric KMS keys. */ public void setKmsKeyId(String kmsKeyId) { this.kmsKeyId = kmsKeyId; } /** *
* The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted volumes. If
* this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used. If you specify
* a KMS key, you must also set the encrypted state to true
.
*
* You can specify a KMS key using any of the following: *
** Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab. *
** Key alias. For example, alias/ExampleAlias. *
** Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab. *
** Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias. *
** Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that is not * valid, the action can appear to complete, but eventually fails. *
** The specified KMS key must exist in the destination Region. *
** Amazon EBS does not support asymmetric KMS keys. *
* * @return The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted * volumes. If this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is * used. If you specify a KMS key, you must also set the encrypted state totrue
.
* * You can specify a KMS key using any of the following: *
** Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab. *
** Key alias. For example, alias/ExampleAlias. *
** Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab. *
** Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias. *
** Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier * that is not valid, the action can appear to complete, but eventually fails. *
** The specified KMS key must exist in the destination Region. *
** Amazon EBS does not support asymmetric KMS keys. */ public String getKmsKeyId() { return this.kmsKeyId; } /** *
* The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted volumes. If
* this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is used. If you specify
* a KMS key, you must also set the encrypted state to true
.
*
* You can specify a KMS key using any of the following: *
** Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab. *
** Key alias. For example, alias/ExampleAlias. *
** Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab. *
** Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias. *
** Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that is not * valid, the action can appear to complete, but eventually fails. *
** The specified KMS key must exist in the destination Region. *
** Amazon EBS does not support asymmetric KMS keys. *
* * @param kmsKeyId * The identifier of the symmetric Key Management Service (KMS) KMS key to use when creating encrypted * volumes. If this parameter is not specified, your Amazon Web Services managed KMS key for Amazon EBS is * used. If you specify a KMS key, you must also set the encrypted state totrue
.
* * You can specify a KMS key using any of the following: *
** Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab. *
** Key alias. For example, alias/ExampleAlias. *
** Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab. *
** Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias. *
** Amazon Web Services authenticates the KMS key asynchronously. Therefore, if you specify an identifier that * is not valid, the action can appear to complete, but eventually fails. *
** The specified KMS key must exist in the destination Region. *
** Amazon EBS does not support asymmetric KMS keys. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withKmsKeyId(String kmsKeyId) { setKmsKeyId(kmsKeyId); return this; } /** *
* The name of the new AMI in the destination Region. *
* * @param name * The name of the new AMI in the destination Region. */ public void setName(String name) { this.name = name; } /** ** The name of the new AMI in the destination Region. *
* * @return The name of the new AMI in the destination Region. */ public String getName() { return this.name; } /** ** The name of the new AMI in the destination Region. *
* * @param name * The name of the new AMI in the destination Region. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withName(String name) { setName(name); return this; } /** ** The ID of the AMI to copy. *
* * @param sourceImageId * The ID of the AMI to copy. */ public void setSourceImageId(String sourceImageId) { this.sourceImageId = sourceImageId; } /** ** The ID of the AMI to copy. *
* * @return The ID of the AMI to copy. */ public String getSourceImageId() { return this.sourceImageId; } /** ** The ID of the AMI to copy. *
* * @param sourceImageId * The ID of the AMI to copy. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withSourceImageId(String sourceImageId) { setSourceImageId(sourceImageId); return this; } /** ** The name of the Region that contains the AMI to copy. *
* * @param sourceRegion * The name of the Region that contains the AMI to copy. */ public void setSourceRegion(String sourceRegion) { this.sourceRegion = sourceRegion; } /** ** The name of the Region that contains the AMI to copy. *
* * @return The name of the Region that contains the AMI to copy. */ public String getSourceRegion() { return this.sourceRegion; } /** ** The name of the Region that contains the AMI to copy. *
* * @param sourceRegion * The name of the Region that contains the AMI to copy. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withSourceRegion(String sourceRegion) { setSourceRegion(sourceRegion); return this; } /** ** The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when copying * an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the destination * Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same * Outpost. *
** For more information, see Copy AMIs from an * Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide. *
* * @param destinationOutpostArn * The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when * copying an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the * destination Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or * within the same Outpost. ** For more information, see Copy AMIs * from an Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide. */ public void setDestinationOutpostArn(String destinationOutpostArn) { this.destinationOutpostArn = destinationOutpostArn; } /** *
* The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when copying * an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the destination * Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same * Outpost. *
** For more information, see Copy AMIs from an * Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide. *
* * @return The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when * copying an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the * destination Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or * within the same Outpost. ** For more information, see Copy AMIs * from an Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide. */ public String getDestinationOutpostArn() { return this.destinationOutpostArn; } /** *
* The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when copying * an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the destination * Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or within the same * Outpost. *
** For more information, see Copy AMIs from an * Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide. *
* * @param destinationOutpostArn * The Amazon Resource Name (ARN) of the Outpost to which to copy the AMI. Only specify this parameter when * copying an AMI from an Amazon Web Services Region to an Outpost. The AMI must be in the Region of the * destination Outpost. You cannot copy an AMI from an Outpost to a Region, from one Outpost to another, or * within the same Outpost. ** For more information, see Copy AMIs * from an Amazon Web Services Region to an Outpost in the Amazon EC2 User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withDestinationOutpostArn(String destinationOutpostArn) { setDestinationOutpostArn(destinationOutpostArn); return this; } /** *
* Indicates whether to include your user-defined AMI tags when copying the AMI. *
** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. *
* * @param copyImageTags * Indicates whether to include your user-defined AMI tags when copying the AMI. ** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. */ public void setCopyImageTags(Boolean copyImageTags) { this.copyImageTags = copyImageTags; } /** *
* Indicates whether to include your user-defined AMI tags when copying the AMI. *
** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. *
* * @return Indicates whether to include your user-defined AMI tags when copying the AMI. ** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. */ public Boolean getCopyImageTags() { return this.copyImageTags; } /** *
* Indicates whether to include your user-defined AMI tags when copying the AMI. *
** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. *
* * @param copyImageTags * Indicates whether to include your user-defined AMI tags when copying the AMI. ** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. * @return Returns a reference to this object so that method calls can be chained together. */ public CopyImageRequest withCopyImageTags(Boolean copyImageTags) { setCopyImageTags(copyImageTags); return this; } /** *
* Indicates whether to include your user-defined AMI tags when copying the AMI. *
** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
** Default: Your user-defined AMI tags are not copied. *
* * @return Indicates whether to include your user-defined AMI tags when copying the AMI. ** The following tags will not be copied: *
*
* System tags (prefixed with aws:
)
*
* For public and shared AMIs, user-defined tags that are attached by other Amazon Web Services accounts *
*
* Default: Your user-defined AMI tags are not copied.
*/
public Boolean isCopyImageTags() {
return this.copyImageTags;
}
/**
* This method is intended for internal use only. Returns the marshaled request configured with additional
* parameters to enable operation dry-run.
*/
@Override
public Request