interface CapacityProviderPermissionsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnCapacityProviderPropsMixin.CapacityProviderPermissionsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnCapacityProviderPropsMixin_CapacityProviderPermissionsConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnCapacityProviderPropsMixin.CapacityProviderPermissionsConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnCapacityProviderPropsMixin.CapacityProviderPermissionsConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const capacityProviderPermissionsConfigProperty: lambda_mixins.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