@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:43.035Z")
public interface InitFileOptions
Example:
Bucket myBucket; InitServiceRestartHandle handle = new InitServiceRestartHandle(); CloudFormationInit.fromElements(InitFile.fromString("/etc/nginx/nginx.conf", "...", InitFileOptions.builder().serviceRestartHandles(List.of(handle)).build()), InitSource.fromS3Object("/var/www/html", myBucket, "html.zip", InitSourceOptions.builder().serviceRestartHandles(List.of(handle)).build()), InitService.enable("nginx", InitServiceOptions.builder() .serviceRestartHandle(handle) .build()));
Modifier and Type | Interface and Description |
---|---|
static class |
InitFileOptions.Builder
A builder for
InitFileOptions |
static class |
InitFileOptions.Jsii$Proxy
An implementation for
InitFileOptions |
Modifier and Type | Method and Description |
---|---|
static InitFileOptions.Builder |
builder() |
default java.lang.Boolean |
getBase64Encoded()
True if the inlined content (from a string or file) should be treated as base64 encoded.
|
default java.lang.String |
getGroup()
The name of the owning group for this file.
|
default java.lang.String |
getMode()
A six-digit octal value representing the mode for this file.
|
default java.lang.String |
getOwner()
The name of the owning user for this file.
|
default java.util.List<InitServiceRestartHandle> |
getServiceRestartHandles()
Restart the given service after this file has been written.
|
default java.lang.Boolean getBase64Encoded()
Only applicable for inlined string and file content.
Default: false
default java.lang.String getGroup()
Not supported for Windows systems.
Default: 'root'
default java.lang.String getMode()
Use the first three digits for symlinks and the last three digits for setting permissions. To create a symlink, specify 120xxx, where xxx defines the permissions of the target file. To specify permissions for a file, use the last three digits, such as 000644.
Not supported for Windows systems.
Default: '000644'
default java.lang.String getOwner()
Not supported for Windows systems.
Default: 'root'
default java.util.List<InitServiceRestartHandle> getServiceRestartHandles()
Default: - Do not restart any service
static InitFileOptions.Builder builder()
InitFileOptions.Builder
of InitFileOptions