All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.backup.VaultPolicy Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

The newest version!
// *** 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.backup;

import com.pulumi.aws.Utilities;
import com.pulumi.aws.backup.VaultPolicyArgs;
import com.pulumi.aws.backup.inputs.VaultPolicyState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import javax.annotation.Nullable;

/**
 * Provides an AWS Backup vault policy resource.
 * 
 * ## Example Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.aws.AwsFunctions;
 * import com.pulumi.aws.inputs.GetCallerIdentityArgs;
 * import com.pulumi.aws.backup.Vault;
 * import com.pulumi.aws.backup.VaultArgs;
 * import com.pulumi.aws.iam.IamFunctions;
 * import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
 * import com.pulumi.aws.backup.VaultPolicy;
 * import com.pulumi.aws.backup.VaultPolicyArgs;
 * 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) {
 *         final var current = AwsFunctions.getCallerIdentity();
 * 
 *         var exampleVault = new Vault("exampleVault", VaultArgs.builder()
 *             .name("example")
 *             .build());
 * 
 *         final var example = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
 *             .statements(GetPolicyDocumentStatementArgs.builder()
 *                 .effect("Allow")
 *                 .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
 *                     .type("AWS")
 *                     .identifiers(current.applyValue(getCallerIdentityResult -> getCallerIdentityResult.accountId()))
 *                     .build())
 *                 .actions(                
 *                     "backup:DescribeBackupVault",
 *                     "backup:DeleteBackupVault",
 *                     "backup:PutBackupVaultAccessPolicy",
 *                     "backup:DeleteBackupVaultAccessPolicy",
 *                     "backup:GetBackupVaultAccessPolicy",
 *                     "backup:StartBackupJob",
 *                     "backup:GetBackupVaultNotifications",
 *                     "backup:PutBackupVaultNotifications")
 *                 .resources(exampleVault.arn())
 *                 .build())
 *             .build());
 * 
 *         var exampleVaultPolicy = new VaultPolicy("exampleVaultPolicy", VaultPolicyArgs.builder()
 *             .backupVaultName(exampleVault.name())
 *             .policy(example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult).applyValue(example -> example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json())))
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Using `pulumi import`, import Backup vault policy using the `name`. For example: * * ```sh * $ pulumi import aws:backup/vaultPolicy:VaultPolicy test TestVault * ``` * */ @ResourceType(type="aws:backup/vaultPolicy:VaultPolicy") public class VaultPolicy extends com.pulumi.resources.CustomResource { /** * The ARN of the vault. * */ @Export(name="backupVaultArn", refs={String.class}, tree="[0]") private Output backupVaultArn; /** * @return The ARN of the vault. * */ public Output backupVaultArn() { return this.backupVaultArn; } /** * Name of the backup vault to add policy for. * */ @Export(name="backupVaultName", refs={String.class}, tree="[0]") private Output backupVaultName; /** * @return Name of the backup vault to add policy for. * */ public Output backupVaultName() { return this.backupVaultName; } /** * The backup vault access policy document in JSON format. * */ @Export(name="policy", refs={String.class}, tree="[0]") private Output policy; /** * @return The backup vault access policy document in JSON format. * */ public Output policy() { return this.policy; } /** * * @param name The _unique_ name of the resulting resource. */ public VaultPolicy(java.lang.String name) { this(name, VaultPolicyArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public VaultPolicy(java.lang.String name, VaultPolicyArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public VaultPolicy(java.lang.String name, VaultPolicyArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("aws:backup/vaultPolicy:VaultPolicy", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private VaultPolicy(java.lang.String name, Output id, @Nullable VaultPolicyState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("aws:backup/vaultPolicy:VaultPolicy", name, state, makeResourceOptions(options, id), false); } private static VaultPolicyArgs makeArgs(VaultPolicyArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? VaultPolicyArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state * @param options Optional settings to control the behavior of the CustomResource. */ public static VaultPolicy get(java.lang.String name, Output id, @Nullable VaultPolicyState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new VaultPolicy(name, id, state, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy