Vault

class Vault : KotlinCustomResource

Provides an AWS Backup vault resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.backup.Vault;
import com.pulumi.aws.backup.VaultArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Vault("example", VaultArgs.builder()
.kmsKeyArn(aws_kms_key.example().arn())
.build());
}
}

Import

Backup vault can be imported using the name, e.g.,

$ pulumi import aws:backup/vault:Vault test-vault TestVault

Properties

Link copied to clipboard
val arn: Output<String>

The ARN of the vault.

Link copied to clipboard
val forceDestroy: Output<Boolean>?

A boolean that indicates that all recovery points stored in the vault are deleted so that the vault can be destroyed without error.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val kmsKeyArn: Output<String>

The server-side encryption key that is used to protect your backups.

Link copied to clipboard
val name: Output<String>

Name of the backup vault to create.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val recoveryPoints: Output<Int>

The number of recovery points that are stored in a backup vault.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Metadata that you can assign to help organize the resources that you create. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>