Interface CfnService.InstanceConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnService.InstanceConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnService

@Stability(Stable) public static interface CfnService.InstanceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the runtime configuration of an AWS App Runner service instance (scaling unit).

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apprunner.*;
 InstanceConfigurationProperty instanceConfigurationProperty = InstanceConfigurationProperty.builder()
         .cpu("cpu")
         .instanceRoleArn("instanceRoleArn")
         .memory("memory")
         .build();
 

See Also: