Show / Hide Table of Contents

Class CfnDaemonTaskDefinitionPropsMixin.LogConfigurationProperty

Inheritance
object
CfnDaemonTaskDefinitionPropsMixin.LogConfigurationProperty
Implements
CfnDaemonTaskDefinitionPropsMixin.ILogConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ECS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDaemonTaskDefinitionPropsMixin.LogConfigurationProperty : CfnDaemonTaskDefinitionPropsMixin.ILogConfigurationProperty
Syntax (vb)
Public Class CfnDaemonTaskDefinitionPropsMixin.LogConfigurationProperty Implements CfnDaemonTaskDefinitionPropsMixin.ILogConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-daemontaskdefinition-logconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.ECS;

             var logConfigurationProperty = new LogConfigurationProperty {
                 LogDriver = "logDriver",
                 Options = new Dictionary<string, string> {
                     { "optionsKey", "options" }
                 },
                 SecretOptions = new [] { new SecretProperty {
                     Name = "name",
                     ValueFrom = "valueFrom"
                 } }
             };

Synopsis

Constructors

LogConfigurationProperty()

Properties

LogDriver
Options
SecretOptions

Constructors

LogConfigurationProperty()

public LogConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-daemontaskdefinition-logconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.ECS;

             var logConfigurationProperty = new LogConfigurationProperty {
                 LogDriver = "logDriver",
                 Options = new Dictionary<string, string> {
                     { "optionsKey", "options" }
                 },
                 SecretOptions = new [] { new SecretProperty {
                     Name = "name",
                     ValueFrom = "valueFrom"
                 } }
             };

Properties

LogDriver

public string? LogDriver { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-daemontaskdefinition-logconfiguration.html#cfn-ecs-daemontaskdefinition-logconfiguration-logdriver

Options

public object? Options { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-daemontaskdefinition-logconfiguration.html#cfn-ecs-daemontaskdefinition-logconfiguration-options

Type union: either Dictionary<string, string> or IResolvable

SecretOptions

public object? SecretOptions { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-daemontaskdefinition-logconfiguration.html#cfn-ecs-daemontaskdefinition-logconfiguration-secretoptions

Type union: either IResolvable or (either IResolvable or CfnDaemonTaskDefinitionPropsMixin.ISecretProperty)[]

Implements

CfnDaemonTaskDefinitionPropsMixin.ILogConfigurationProperty
Back to top Generated by DocFX