class Platform
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Signer.Platform |
Java | software.amazon.awscdk.services.signer.Platform |
Python | aws_cdk.aws_signer.Platform |
TypeScript (source) | @aws-cdk/aws-signer » Platform |
Platforms that are allowed with signing config.
See also: https://docs.aws.amazon.com/signer/latest/developerguide/gs-platform.html
Example
const signingProfile = new signer.SigningProfile(this, 'SigningProfile', {
platform: signer.Platform.AWS_LAMBDA_SHA384_ECDSA,
});
Properties
Name | Type | Description |
---|---|---|
platform | string | The id of signing platform. |
static AMAZON_FREE_RTOS_DEFAULT | Platform | Specification of signature format and signing algorithms with SHA256 hash and ECDSA encryption for Amazon FreeRTOS. |
static AMAZON_FREE_RTOS_TI_CC3220 | Platform | Specification of signature format and signing algorithms with SHA1 hash and RSA encryption for Amazon FreeRTOS. |
static AWS_IOT_DEVICE_MANAGEMENT_SHA256_ECDSA | Platform | Specification of signature format and signing algorithms for AWS IoT Device. |
static AWS_LAMBDA_SHA384_ECDSA | Platform | Specification of signature format and signing algorithms for AWS Lambda. |
platformId
Type:
string
The id of signing platform.
static AMAZON_FREE_RTOS_DEFAULT
Type:
Platform
Specification of signature format and signing algorithms with SHA256 hash and ECDSA encryption for Amazon FreeRTOS.
static AMAZON_FREE_RTOS_TI_CC3220SF
Type:
Platform
Specification of signature format and signing algorithms with SHA1 hash and RSA encryption for Amazon FreeRTOS.
static AWS_IOT_DEVICE_MANAGEMENT_SHA256_ECDSA
Type:
Platform
Specification of signature format and signing algorithms for AWS IoT Device.
static AWS_LAMBDA_SHA384_ECDSA
Type:
Platform
Specification of signature format and signing algorithms for AWS Lambda.