BotS3LocationArgs

data class BotS3LocationArgs(val s3Bucket: Output<String>, val s3ObjectKey: Output<String>, val s3ObjectVersion: Output<String>? = null) : ConvertibleToJava<BotS3LocationArgs>

S3 location of bot definitions zip file, if it's not defined inline in CloudFormation.

Constructors

Link copied to clipboard
constructor(s3Bucket: Output<String>, s3ObjectKey: Output<String>, s3ObjectVersion: Output<String>? = null)

Properties

Link copied to clipboard
val s3Bucket: Output<String>

An Amazon S3 bucket in the same AWS Region as your function. The bucket can be in a different AWS account.

Link copied to clipboard
val s3ObjectKey: Output<String>

The Amazon S3 key of the deployment package.

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

For versioned objects, the version of the deployment package object to use. If not specified, the current object version will be used.

Functions

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