Show / Hide Table of Contents

Class CfnDaemonProps

Properties for defining a CfnDaemon.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.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.AWS.ECS;

             var cfnDaemonProps = new CfnDaemonProps {
                 CapacityProviderArns = new [] { "capacityProviderArns" },
                 ClusterArn = "clusterArn",
                 DaemonName = "daemonName",
                 DaemonTaskDefinitionArn = "daemonTaskDefinitionArn",
                 DeploymentConfiguration = new DaemonDeploymentConfigurationProperty {
                     Alarms = new DaemonAlarmConfigurationProperty {
                         AlarmNames = new [] { "alarmNames" },
                         Enable = false
                     },
                     BakeTimeInMinutes = 123,
                     DrainPercent = 123
                 },
                 EnableEcsManagedTags = false,
                 EnableExecuteCommand = false,
                 PropagateTags = "propagateTags",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnDaemonProps()

Properties for defining a CfnDaemon.

Properties

CapacityProviderArns

Properties for defining a CfnDaemon.

ClusterArn

Properties for defining a CfnDaemon.

DaemonName

Properties for defining a CfnDaemon.

DaemonTaskDefinitionArn

Properties for defining a CfnDaemon.

DeploymentConfiguration

Properties for defining a CfnDaemon.

EnableEcsManagedTags

Properties for defining a CfnDaemon.

EnableExecuteCommand

Properties for defining a CfnDaemon.

PropagateTags

Properties for defining a CfnDaemon.

Tags

Properties for defining a CfnDaemon.

Constructors

CfnDaemonProps()

Properties for defining a CfnDaemon.

public CfnDaemonProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.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.AWS.ECS;

             var cfnDaemonProps = new CfnDaemonProps {
                 CapacityProviderArns = new [] { "capacityProviderArns" },
                 ClusterArn = "clusterArn",
                 DaemonName = "daemonName",
                 DaemonTaskDefinitionArn = "daemonTaskDefinitionArn",
                 DeploymentConfiguration = new DaemonDeploymentConfigurationProperty {
                     Alarms = new DaemonAlarmConfigurationProperty {
                         AlarmNames = new [] { "alarmNames" },
                         Enable = false
                     },
                     BakeTimeInMinutes = 123,
                     DrainPercent = 123
                 },
                 EnableEcsManagedTags = false,
                 EnableExecuteCommand = false,
                 PropagateTags = "propagateTags",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

CapacityProviderArns

Properties for defining a CfnDaemon.

public string[]? CapacityProviderArns { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-capacityproviderarns

ClusterArn

Properties for defining a CfnDaemon.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-clusterarn

DaemonName

Properties for defining a CfnDaemon.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-daemonname

DaemonTaskDefinitionArn

Properties for defining a CfnDaemon.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-daemontaskdefinitionarn

DeploymentConfiguration

Properties for defining a CfnDaemon.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-deploymentconfiguration

Type union: either IResolvable or CfnDaemon.IDaemonDeploymentConfigurationProperty

EnableEcsManagedTags

Properties for defining a CfnDaemon.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-enableecsmanagedtags

Type union: either bool or IResolvable

EnableExecuteCommand

Properties for defining a CfnDaemon.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-enableexecutecommand

Type union: either bool or IResolvable

PropagateTags

Properties for defining a CfnDaemon.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-propagatetags

Tags

Properties for defining a CfnDaemon.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-daemon.html#cfn-ecs-daemon-tags

Implements

ICfnDaemonProps
Back to top Generated by DocFX