/* * 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.CreateRestoreImageTaskRequestMarshaller; /** * */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateRestoreImageTaskRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest { /** *

* The name of the Amazon S3 bucket that contains the stored AMI object. *

*/ private String bucket; /** *

* The name of the stored AMI object in the bucket. *

*/ private String objectKey; /** *

* The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do not * provide a name, the new AMI gets the same name as the original AMI. *

*/ private String name; /** *

* The tags to apply to the AMI and snapshots on restoration. You can tag the AMI, the snapshots, or both. *

* */ private com.amazonaws.internal.SdkInternalList tagSpecifications; /** *

* The name of the Amazon S3 bucket that contains the stored AMI object. *

* * @param bucket * The name of the Amazon S3 bucket that contains the stored AMI object. */ public void setBucket(String bucket) { this.bucket = bucket; } /** *

* The name of the Amazon S3 bucket that contains the stored AMI object. *

* * @return The name of the Amazon S3 bucket that contains the stored AMI object. */ public String getBucket() { return this.bucket; } /** *

* The name of the Amazon S3 bucket that contains the stored AMI object. *

* * @param bucket * The name of the Amazon S3 bucket that contains the stored AMI object. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRestoreImageTaskRequest withBucket(String bucket) { setBucket(bucket); return this; } /** *

* The name of the stored AMI object in the bucket. *

* * @param objectKey * The name of the stored AMI object in the bucket. */ public void setObjectKey(String objectKey) { this.objectKey = objectKey; } /** *

* The name of the stored AMI object in the bucket. *

* * @return The name of the stored AMI object in the bucket. */ public String getObjectKey() { return this.objectKey; } /** *

* The name of the stored AMI object in the bucket. *

* * @param objectKey * The name of the stored AMI object in the bucket. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRestoreImageTaskRequest withObjectKey(String objectKey) { setObjectKey(objectKey); return this; } /** *

* The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do not * provide a name, the new AMI gets the same name as the original AMI. *

* * @param name * The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do * not provide a name, the new AMI gets the same name as the original AMI. */ public void setName(String name) { this.name = name; } /** *

* The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do not * provide a name, the new AMI gets the same name as the original AMI. *

* * @return The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do * not provide a name, the new AMI gets the same name as the original AMI. */ public String getName() { return this.name; } /** *

* The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do not * provide a name, the new AMI gets the same name as the original AMI. *

* * @param name * The name for the restored AMI. The name must be unique for AMIs in the Region for this account. If you do * not provide a name, the new AMI gets the same name as the original AMI. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateRestoreImageTaskRequest withName(String name) { setName(name); return this; } /** *

* The tags to apply to the AMI and snapshots on restoration. You can tag the AMI, the snapshots, or both. *

* * * @return The tags to apply to the AMI and snapshots on restoration. You can tag the AMI, the snapshots, or * both.

*