com.pulumi.aws.redshift.SnapshotCopyArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.redshift;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class SnapshotCopyArgs extends com.pulumi.resources.ResourceArgs {
public static final SnapshotCopyArgs Empty = new SnapshotCopyArgs();
/**
* Identifier of the source cluster.
*
*/
@Import(name="clusterIdentifier", required=true)
private Output clusterIdentifier;
/**
* @return Identifier of the source cluster.
*
*/
public Output clusterIdentifier() {
return this.clusterIdentifier;
}
/**
* AWS Region to copy snapshots to.
*
* The following arguments are optional:
*
*/
@Import(name="destinationRegion", required=true)
private Output destinationRegion;
/**
* @return AWS Region to copy snapshots to.
*
* The following arguments are optional:
*
*/
public Output destinationRegion() {
return this.destinationRegion;
}
/**
* Number of days to retain newly copied snapshots in the destination AWS Region after they are copied from the source AWS Region. If the value is `-1`, the manual snapshot is retained indefinitely.
*
*/
@Import(name="manualSnapshotRetentionPeriod")
private @Nullable Output manualSnapshotRetentionPeriod;
/**
* @return Number of days to retain newly copied snapshots in the destination AWS Region after they are copied from the source AWS Region. If the value is `-1`, the manual snapshot is retained indefinitely.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy