namespace Amazon.Lambda.CloudWatchEvents.BatchEvents
{
///
/// An object representing the secret to expose to your container. Secrets can be exposed to a container in the following ways:
/// - To inject sensitive data into your containers as environment variables, use the secrets container definition parameter.
/// - To reference sensitive information in the log configuration of a container, use the secretOptions container definition parameter.
/// For more information, see Specifying sensitive data in the AWS Batch User Guide.
///
public class Secret
{
///
/// The name of the secret.
///
public string Name { get; set; }
///
/// The secret to expose to the container. The 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.
///
public string ValueFrom { get; set; }
}
}