interface LambdasProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ARCRegionSwitch.CfnPlan.LambdasProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsarcregionswitch#CfnPlan_LambdasProperty |
Java | software.amazon.awscdk.services.arcregionswitch.CfnPlan.LambdasProperty |
Python | aws_cdk.aws_arcregionswitch.CfnPlan.LambdasProperty |
TypeScript | aws-cdk-lib » aws_arcregionswitch » CfnPlan » LambdasProperty |
Configuration for AWS Lambda functions used in a Region switch plan.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_arcregionswitch as arcregionswitch } from 'aws-cdk-lib';
const lambdasProperty: arcregionswitch.CfnPlan.LambdasProperty = {
arn: 'arn',
crossAccountRole: 'crossAccountRole',
externalId: 'externalId',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the Lambda function. |
| cross | string | The cross account role for the configuration. |
| external | string | The external ID (secret key) for the configuration. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Lambda function.
crossAccountRole?
Type:
string
(optional)
The cross account role for the configuration.
externalId?
Type:
string
(optional)
The external ID (secret key) for the configuration.

.NET
Go
Java
Python
TypeScript