interface CapacityProviderPermissionsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnCapacityProviderPropsMixin.CapacityProviderPermissionsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnCapacityProviderPropsMixin_CapacityProviderPermissionsConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnCapacityProviderPropsMixin.CapacityProviderPermissionsConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnCapacityProviderPropsMixin.CapacityProviderPermissionsConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnCapacityProviderPropsMixin » CapacityProviderPermissionsConfigProperty |
Configuration that specifies the permissions required for the capacity provider to manage compute resources.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from '@aws-cdk/cfn-property-mixins';
const capacityProviderPermissionsConfigProperty: lambda.CfnCapacityProviderPropsMixin.CapacityProviderPermissionsConfigProperty = {
capacityProviderOperatorRoleArn: 'capacityProviderOperatorRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| capacity | string | The ARN of the IAM role that the capacity provider uses to manage compute instances and other AWS resources. |
capacityProviderOperatorRoleArn?
Type:
string
(optional)
The ARN of the IAM role that the capacity provider uses to manage compute instances and other AWS resources.

.NET
Go
Java
Python
TypeScript