Class: Aws::ECS::Types::Secret

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

When making an API call, you may pass Secret data as a hash:

{
  name: "String", # required
  value_from: "String", # required
}

An object representing the secret to expose to your container. For more information, see [Specifying Sensitive Data] in the *Amazon Elastic Container Service Developer Guide*.

[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The value to set as the environment variable on the container.

Returns:

  • (String)


5557
5558
5559
5560
5561
# File 'lib/aws-sdk-ecs/types.rb', line 5557

class Secret < Struct.new(
  :name,
  :value_from)
  include Aws::Structure
end

#value_fromString

The secret to expose to the container. If your task is using the EC2 launch type, then supported values are either the full ARN of the AWS Secrets Manager secret or the full ARN of the parameter in the AWS Systems Manager Parameter Store. If your task is using the Fargate launch type, then the only supported value is the full ARN of the parameter in the AWS Systems Manager Parameter Store.

<note markdown=“1”> If the AWS Systems Manager Parameter Store parameter exists in the same Region as the task you are 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.

</note>

Returns:

  • (String)


5557
5558
5559
5560
5561
# File 'lib/aws-sdk-ecs/types.rb', line 5557

class Secret < Struct.new(
  :name,
  :value_from)
  include Aws::Structure
end