Interface CfnService.IInstanceConfigurationProperty
Describes the runtime configuration of an AWS App Runner service instance (scaling unit).
Namespace: Amazon.CDK.AWS.AppRunner
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IInstanceConfigurationProperty
Syntax (vb)
Public Interface IInstanceConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppRunner;
var instanceConfigurationProperty = new InstanceConfigurationProperty {
Cpu = "cpu",
InstanceRoleArn = "instanceRoleArn",
Memory = "memory"
};
Synopsis
Properties
Cpu | The number of CPU units reserved for each instance of your App Runner service. |
Instance |
The Amazon Resource Name (ARN) of an IAM role that provides permissions to your App Runner service. |
Memory | The amount of memory, in MB or GB, reserved for each instance of your App Runner service. |
Properties
Cpu
The number of CPU units reserved for each instance of your App Runner service.
virtual string Cpu { get; }
Property Value
System.
Remarks
InstanceRoleArn
The Amazon Resource Name (ARN) of an IAM role that provides permissions to your App Runner service.
virtual string InstanceRoleArn { get; }
Property Value
System.
Remarks
These are permissions that your code needs when it calls any AWS APIs.
Memory
The amount of memory, in MB or GB, reserved for each instance of your App Runner service.
virtual string Memory { get; }
Property Value
System.