SecretArgs

data class SecretArgs(val name: Output<String>? = null, val valueFrom: Output<String>? = null) : ConvertibleToJava<SecretArgs>

Definition of Secret

Constructors

Link copied to clipboard
constructor(name: Output<String>? = null, valueFrom: Output<String>? = null)

Properties

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

The name of the secret.

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

The secret to expose to the container. The supported values are either the full ARN of the ASMlong secret or the full ARN of the parameter in the SSM Parameter Store. For information about the require IAMlong permissions, see Required IAM permissions for Amazon ECS secrets (for Secrets Manager) or Required IAM permissions for Amazon ECS secrets (for Systems Manager Parameter store) in the Amazon Elastic Container Service Developer Guide. If the SSM Parameter Store parameter exists in the same Region as the task you're launching, then you can use either the full ARN or name of the parameter. If the parameter exists in a different Region, then the full ARN must be specified.

Functions

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