AppBundleArgs

data class AppBundleArgs(val customerManagedKeyArn: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<AppBundleArgs>

Resource for managing an AWS AppFabric AppBundle.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.appfabric.AppBundle("example", {
customerManagedKeyArn: exampleAwmsKmsKey.arn,
tags: {
Environment: "test",
},
});
import pulumi
import pulumi_aws as aws
example = aws.appfabric.AppBundle("example",
customer_managed_key_arn=example_awms_kms_key["arn"],
tags={
"Environment": "test",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.AppFabric.AppBundle("example", new()
{
CustomerManagedKeyArn = exampleAwmsKmsKey.Arn,
Tags =
{
{ "Environment", "test" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appfabric"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appfabric.NewAppBundle(ctx, "example", &appfabric.AppBundleArgs{
CustomerManagedKeyArn: pulumi.Any(exampleAwmsKmsKey.Arn),
Tags: pulumi.StringMap{
"Environment": pulumi.String("test"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appfabric.AppBundle;
import com.pulumi.aws.appfabric.AppBundleArgs;
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 AppBundle("example", AppBundleArgs.builder()
.customerManagedKeyArn(exampleAwmsKmsKey.arn())
.tags(Map.of("Environment", "test"))
.build());
}
}
resources:
example:
type: aws:appfabric:AppBundle
properties:
customerManagedKeyArn: ${exampleAwmsKmsKey.arn}
tags:
Environment: test

Import

Using pulumi import, import AppFabric AppBundle using the arn. For example:

$ pulumi import aws:appfabric/appBundle:AppBundle example arn:aws:appfabric:[region]:[account]:appbundle/ee5587b4-5765-4288-a202-xxxxxxxxxx

Constructors

Link copied to clipboard
constructor(customerManagedKeyArn: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val customerManagedKeyArn: Output<String>? = null

The Amazon Resource Name (ARN) of the AWS Key Management Service (AWS KMS) key to use to encrypt the application data. If this is not specified, an AWS owned key is used for encryption.

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

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.

Functions

Link copied to clipboard
open override fun toJava(): AppBundleArgs