Class CfnDaemonTaskDefinitionPropsMixin.LogConfigurationProperty
Inherited Members
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
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
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
Remarks
Options
public object? Options { get; set; }
Property Value
Remarks
Type union: either Dictionary<string, string> or IResolvable
SecretOptions
public object? SecretOptions { get; set; }