Skip to content

Create App Bundle

appfabric_create_app_bundle R Documentation

Creates an app bundle to collect data from an application using AppFabric

Description

Creates an app bundle to collect data from an application using AppFabric.

Usage

appfabric_create_app_bundle(clientToken, customerManagedKeyIdentifier,
  tags)

Arguments

clientToken

Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.

If you don't provide this value, then Amazon Web Services generates a random one for you.

If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.

customerManagedKeyIdentifier

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

tags

A map of the key-value pairs of the tag or tags to assign to the resource.

Value

A list with the following syntax:

list(
  appBundle = list(
    arn = "string",
    customerManagedKeyArn = "string"
  )
)

Request syntax

svc$create_app_bundle(
  clientToken = "string",
  customerManagedKeyIdentifier = "string",
  tags = list(
    list(
      key = "string",
      value = "string"
    )
  )
)