InitServiceOptions¶
-
class
aws_cdk.aws_ec2.
InitServiceOptions
(*, enabled=None, ensure_running=None, service_restart_handle=None)¶ Bases:
object
Options for an InitService.
- Parameters
enabled (
Optional
[bool
]) – Enable or disable this service. Set to true to ensure that the service will be started automatically upon boot. Set to false to ensure that the service will not be started automatically upon boot. Default: - true if used inInitService.enable()
, no change to service state if used inInitService.fromOptions()
.ensure_running (
Optional
[bool
]) – Make sure this service is running or not running after cfn-init finishes. Set to true to ensure that the service is running after cfn-init finishes. Set to false to ensure that the service is not running after cfn-init finishes. Default: - same value asenabled
.service_restart_handle (
Optional
[InitServiceRestartHandle
]) – Restart service when the actions registered into the restartHandle have been performed. Register actions into the restartHandle by passing it toInitFile
,InitCommand
,InitPackage
andInitSource
objects. Default: - No files trigger restart
Attributes
-
enabled
¶ Enable or disable this service.
Set to true to ensure that the service will be started automatically upon boot.
Set to false to ensure that the service will not be started automatically upon boot.
- Default
true if used in
InitService.enable()
, no change to service
state if used in
InitService.fromOptions()
.- Return type
Optional
[bool
]
-
ensure_running
¶ Make sure this service is running or not running after cfn-init finishes.
Set to true to ensure that the service is running after cfn-init finishes.
Set to false to ensure that the service is not running after cfn-init finishes.
- Default
same value as
enabled
.
- Return type
Optional
[bool
]
-
service_restart_handle
¶ Restart service when the actions registered into the restartHandle have been performed.
Register actions into the restartHandle by passing it to
InitFile
,InitCommand
,InitPackage
andInitSource
objects.- Default
No files trigger restart
- Return type
Optional
[InitServiceRestartHandle
]