Interface ConfigSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ConfigSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.277Z")
@Stability(Stable)
public interface ConfigSetProps
extends software.amazon.jsii.JsiiSerializable
Options for CloudFormationInit.withConfigSets.
Example:
Vpc vpc; InstanceType instanceType; IMachineImage machineImage; Instance.Builder.create(this, "Instance") .vpc(vpc) .instanceType(instanceType) .machineImage(machineImage) // Showing the most complex setup, if you have simpler requirements // you can use `CloudFormationInit.fromElements()`. .init(CloudFormationInit.fromConfigSets(ConfigSetProps.builder() .configSets(Map.of( // Applies the configs below in this order "default", List.of("yumPreinstall", "config"))) .configs(Map.of( "yumPreinstall", new InitConfig(List.of(InitPackage.yum("git"))), "config", new InitConfig(List.of(InitFile.fromObject("/etc/stack.json", Map.of( "stackId", Stack.of(this).getStackId(), "stackName", Stack.of(this).getStackName(), "region", Stack.of(this).getRegion())), InitGroup.fromName("my-group"), InitUser.fromName("my-user"), InitPackage.rpm("http://mirrors.ukfast.co.uk/sites/dl.fedoraproject.org/pub/epel/8/Everything/x86_64/Packages/r/rubygem-git-1.5.0-2.el8.noarch.rpm"))))) .build())) .initOptions(ApplyCloudFormationInitOptions.builder() // Optional, which configsets to activate (['default'] by default) .configSets(List.of("default")) // Optional, how long the installation is expected to take (5 minutes by default) .timeout(Duration.minutes(30)) // Optional, whether to include the --url argument when running cfn-init and cfn-signal commands (false by default) .includeUrl(true) // Optional, whether to include the --role argument when running cfn-init and cfn-signal commands (false by default) .includeRole(true) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forConfigSetProps
static final class
An implementation forConfigSetProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic ConfigSetProps.Builder
builder()
The sets of configs to pick from.The definitions of each config set.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigs
The sets of configs to pick from. -
getConfigSets
The definitions of each config set. -
builder
- Returns:
- a
ConfigSetProps.Builder
ofConfigSetProps
-