interface HookTimeoutConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnService.HookTimeoutConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnService_HookTimeoutConfigProperty |
Java | software.amazon.awscdk.services.ecs.CfnService.HookTimeoutConfigProperty |
Python | aws_cdk.aws_ecs.CfnService.HookTimeoutConfigProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnService » HookTimeoutConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const hookTimeoutConfigProperty: ecs.CfnService.HookTimeoutConfigProperty = {
action: 'action',
timeoutInMinutes: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | |
| timeout | number |
action?
Type:
string
(optional)
timeoutInMinutes?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript