1. Packages
  2. AWS Classic
  3. API Docs
  4. glacier
  5. Vault

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.glacier.Vault

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    Provides a Glacier Vault Resource. You can refer to the Glacier Developer Guide for a full explanation of the Glacier Vault functionality

    NOTE: When removing a Glacier Vault, the Vault must be empty.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const awsSnsTopic = new aws.sns.Topic("aws_sns_topic", {name: "glacier-sns-topic"});
    const myArchive = aws.iam.getPolicyDocument({
        statements: [{
            sid: "add-read-only-perm",
            effect: "Allow",
            principals: [{
                type: "*",
                identifiers: ["*"],
            }],
            actions: [
                "glacier:InitiateJob",
                "glacier:GetJobOutput",
            ],
            resources: ["arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive"],
        }],
    });
    const myArchiveVault = new aws.glacier.Vault("my_archive", {
        name: "MyArchive",
        notification: {
            snsTopic: awsSnsTopic.arn,
            events: [
                "ArchiveRetrievalCompleted",
                "InventoryRetrievalCompleted",
            ],
        },
        accessPolicy: myArchive.then(myArchive => myArchive.json),
        tags: {
            Test: "MyArchive",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    aws_sns_topic = aws.sns.Topic("aws_sns_topic", name="glacier-sns-topic")
    my_archive = aws.iam.get_policy_document(statements=[aws.iam.GetPolicyDocumentStatementArgs(
        sid="add-read-only-perm",
        effect="Allow",
        principals=[aws.iam.GetPolicyDocumentStatementPrincipalArgs(
            type="*",
            identifiers=["*"],
        )],
        actions=[
            "glacier:InitiateJob",
            "glacier:GetJobOutput",
        ],
        resources=["arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive"],
    )])
    my_archive_vault = aws.glacier.Vault("my_archive",
        name="MyArchive",
        notification=aws.glacier.VaultNotificationArgs(
            sns_topic=aws_sns_topic.arn,
            events=[
                "ArchiveRetrievalCompleted",
                "InventoryRetrievalCompleted",
            ],
        ),
        access_policy=my_archive.json,
        tags={
            "Test": "MyArchive",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/glacier"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sns"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		awsSnsTopic, err := sns.NewTopic(ctx, "aws_sns_topic", &sns.TopicArgs{
    			Name: pulumi.String("glacier-sns-topic"),
    		})
    		if err != nil {
    			return err
    		}
    		myArchive, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
    			Statements: []iam.GetPolicyDocumentStatement{
    				{
    					Sid:    pulumi.StringRef("add-read-only-perm"),
    					Effect: pulumi.StringRef("Allow"),
    					Principals: []iam.GetPolicyDocumentStatementPrincipal{
    						{
    							Type: "*",
    							Identifiers: []string{
    								"*",
    							},
    						},
    					},
    					Actions: []string{
    						"glacier:InitiateJob",
    						"glacier:GetJobOutput",
    					},
    					Resources: []string{
    						"arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = glacier.NewVault(ctx, "my_archive", &glacier.VaultArgs{
    			Name: pulumi.String("MyArchive"),
    			Notification: &glacier.VaultNotificationArgs{
    				SnsTopic: awsSnsTopic.Arn,
    				Events: pulumi.StringArray{
    					pulumi.String("ArchiveRetrievalCompleted"),
    					pulumi.String("InventoryRetrievalCompleted"),
    				},
    			},
    			AccessPolicy: pulumi.String(myArchive.Json),
    			Tags: pulumi.StringMap{
    				"Test": pulumi.String("MyArchive"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var awsSnsTopic = new Aws.Sns.Topic("aws_sns_topic", new()
        {
            Name = "glacier-sns-topic",
        });
    
        var myArchive = Aws.Iam.GetPolicyDocument.Invoke(new()
        {
            Statements = new[]
            {
                new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
                {
                    Sid = "add-read-only-perm",
                    Effect = "Allow",
                    Principals = new[]
                    {
                        new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                        {
                            Type = "*",
                            Identifiers = new[]
                            {
                                "*",
                            },
                        },
                    },
                    Actions = new[]
                    {
                        "glacier:InitiateJob",
                        "glacier:GetJobOutput",
                    },
                    Resources = new[]
                    {
                        "arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive",
                    },
                },
            },
        });
    
        var myArchiveVault = new Aws.Glacier.Vault("my_archive", new()
        {
            Name = "MyArchive",
            Notification = new Aws.Glacier.Inputs.VaultNotificationArgs
            {
                SnsTopic = awsSnsTopic.Arn,
                Events = new[]
                {
                    "ArchiveRetrievalCompleted",
                    "InventoryRetrievalCompleted",
                },
            },
            AccessPolicy = myArchive.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
            Tags = 
            {
                { "Test", "MyArchive" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.sns.Topic;
    import com.pulumi.aws.sns.TopicArgs;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.glacier.Vault;
    import com.pulumi.aws.glacier.VaultArgs;
    import com.pulumi.aws.glacier.inputs.VaultNotificationArgs;
    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 awsSnsTopic = new Topic("awsSnsTopic", TopicArgs.builder()        
                .name("glacier-sns-topic")
                .build());
    
            final var myArchive = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements(GetPolicyDocumentStatementArgs.builder()
                    .sid("add-read-only-perm")
                    .effect("Allow")
                    .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                        .type("*")
                        .identifiers("*")
                        .build())
                    .actions(                
                        "glacier:InitiateJob",
                        "glacier:GetJobOutput")
                    .resources("arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive")
                    .build())
                .build());
    
            var myArchiveVault = new Vault("myArchiveVault", VaultArgs.builder()        
                .name("MyArchive")
                .notification(VaultNotificationArgs.builder()
                    .snsTopic(awsSnsTopic.arn())
                    .events(                
                        "ArchiveRetrievalCompleted",
                        "InventoryRetrievalCompleted")
                    .build())
                .accessPolicy(myArchive.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
                .tags(Map.of("Test", "MyArchive"))
                .build());
    
        }
    }
    
    resources:
      awsSnsTopic:
        type: aws:sns:Topic
        name: aws_sns_topic
        properties:
          name: glacier-sns-topic
      myArchiveVault:
        type: aws:glacier:Vault
        name: my_archive
        properties:
          name: MyArchive
          notification:
            snsTopic: ${awsSnsTopic.arn}
            events:
              - ArchiveRetrievalCompleted
              - InventoryRetrievalCompleted
          accessPolicy: ${myArchive.json}
          tags:
            Test: MyArchive
    variables:
      myArchive:
        fn::invoke:
          Function: aws:iam:getPolicyDocument
          Arguments:
            statements:
              - sid: add-read-only-perm
                effect: Allow
                principals:
                  - type: '*'
                    identifiers:
                      - '*'
                actions:
                  - glacier:InitiateJob
                  - glacier:GetJobOutput
                resources:
                  - arn:aws:glacier:eu-west-1:432981146916:vaults/MyArchive
    

    Create Vault Resource

    new Vault(name: string, args?: VaultArgs, opts?: CustomResourceOptions);
    @overload
    def Vault(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              access_policy: Optional[str] = None,
              name: Optional[str] = None,
              notification: Optional[VaultNotificationArgs] = None,
              tags: Optional[Mapping[str, str]] = None)
    @overload
    def Vault(resource_name: str,
              args: Optional[VaultArgs] = None,
              opts: Optional[ResourceOptions] = None)
    func NewVault(ctx *Context, name string, args *VaultArgs, opts ...ResourceOption) (*Vault, error)
    public Vault(string name, VaultArgs? args = null, CustomResourceOptions? opts = null)
    public Vault(String name, VaultArgs args)
    public Vault(String name, VaultArgs args, CustomResourceOptions options)
    
    type: aws:glacier:Vault
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args VaultArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args VaultArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args VaultArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VaultArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VaultArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Vault Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Vault resource accepts the following input properties:

    AccessPolicy string
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    Name string
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    Notification VaultNotification
    The notifications for the Vault. Fields documented below.
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    AccessPolicy string
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    Name string
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    Notification VaultNotificationArgs
    The notifications for the Vault. Fields documented below.
    Tags map[string]string
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    accessPolicy String
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    name String
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification VaultNotification
    The notifications for the Vault. Fields documented below.
    tags Map<String,String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    accessPolicy string
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    name string
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification VaultNotification
    The notifications for the Vault. Fields documented below.
    tags {[key: string]: string}
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    access_policy str
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    name str
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification VaultNotificationArgs
    The notifications for the Vault. Fields documented below.
    tags Mapping[str, str]
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    accessPolicy String
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    name String
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification Property Map
    The notifications for the Vault. Fields documented below.
    tags Map<String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Vault resource produces the following output properties:

    Arn string
    The ARN of the vault.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The URI of the vault that was created.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    Arn string
    The ARN of the vault.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The URI of the vault that was created.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    arn String
    The ARN of the vault.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The URI of the vault that was created.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    arn string
    The ARN of the vault.
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    The URI of the vault that was created.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    arn str
    The ARN of the vault.
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    The URI of the vault that was created.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    arn String
    The ARN of the vault.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The URI of the vault that was created.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    Look up Existing Vault Resource

    Get an existing Vault resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: VaultState, opts?: CustomResourceOptions): Vault
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_policy: Optional[str] = None,
            arn: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            notification: Optional[VaultNotificationArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None) -> Vault
    func GetVault(ctx *Context, name string, id IDInput, state *VaultState, opts ...ResourceOption) (*Vault, error)
    public static Vault Get(string name, Input<string> id, VaultState? state, CustomResourceOptions? opts = null)
    public static Vault get(String name, Output<String> id, VaultState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccessPolicy string
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    Arn string
    The ARN of the vault.
    Location string
    The URI of the vault that was created.
    Name string
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    Notification VaultNotification
    The notifications for the Vault. Fields documented below.
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    AccessPolicy string
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    Arn string
    The ARN of the vault.
    Location string
    The URI of the vault that was created.
    Name string
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    Notification VaultNotificationArgs
    The notifications for the Vault. Fields documented below.
    Tags map[string]string
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    accessPolicy String
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    arn String
    The ARN of the vault.
    location String
    The URI of the vault that was created.
    name String
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification VaultNotification
    The notifications for the Vault. Fields documented below.
    tags Map<String,String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    accessPolicy string
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    arn string
    The ARN of the vault.
    location string
    The URI of the vault that was created.
    name string
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification VaultNotification
    The notifications for the Vault. Fields documented below.
    tags {[key: string]: string}
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    access_policy str
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    arn str
    The ARN of the vault.
    location str
    The URI of the vault that was created.
    name str
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification VaultNotificationArgs
    The notifications for the Vault. Fields documented below.
    tags Mapping[str, str]
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    accessPolicy String
    The policy document. This is a JSON formatted string. The heredoc syntax or file function is helpful here. Use the Glacier Developer Guide for more information on Glacier Vault Policy
    arn String
    The ARN of the vault.
    location String
    The URI of the vault that was created.
    name String
    The name of the Vault. Names can be between 1 and 255 characters long and the valid characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), and '.' (period).
    notification Property Map
    The notifications for the Vault. Fields documented below.
    tags Map<String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:Please use tags instead.

    Supporting Types

    VaultNotification, VaultNotificationArgs

    Events List<string>
    You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
    SnsTopic string
    The SNS Topic ARN.
    Events []string
    You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
    SnsTopic string
    The SNS Topic ARN.
    events List<String>
    You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
    snsTopic String
    The SNS Topic ARN.
    events string[]
    You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
    snsTopic string
    The SNS Topic ARN.
    events Sequence[str]
    You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
    sns_topic str
    The SNS Topic ARN.
    events List<String>
    You can configure a vault to publish a notification for ArchiveRetrievalCompleted and InventoryRetrievalCompleted events.
    snsTopic String
    The SNS Topic ARN.

    Import

    Using pulumi import, import Glacier Vaults using the name. For example:

    $ pulumi import aws:glacier/vault:Vault archive my_archive
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi