interface DaemonReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ECS.DaemonReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsecs#DaemonReference |
Java | software.amazon.awscdk.interfaces.ecs.DaemonReference |
Python | aws_cdk.interfaces.aws_ecs.DaemonReference |
TypeScript | aws-cdk-lib » interfaces » aws_ecs » DaemonReference |
A reference to a Daemon resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as interfaces_ecs } from 'aws-cdk-lib/interfaces';
const daemonReference: interfaces_ecs.DaemonReference = {
daemonArn: 'daemonArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| daemon | string | The DaemonArn of the Daemon resource. |
daemonArn
Type:
string
The DaemonArn of the Daemon resource.

.NET
Go
Java
Python
TypeScript