interface SigningProfileAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Signer.SigningProfileAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssigner#SigningProfileAttributes |
Java | software.amazon.awscdk.services.signer.SigningProfileAttributes |
Python | aws_cdk.aws_signer.SigningProfileAttributes |
TypeScript (source) | aws-cdk-lib » aws_signer » SigningProfileAttributes |
A reference to a Signing Profile.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_signer as signer } from 'aws-cdk-lib';
const signingProfileAttributes: signer.SigningProfileAttributes = {
signingProfileName: 'signingProfileName',
signingProfileVersion: 'signingProfileVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| signing | string | The name of signing profile. |
| signing | string | The version of signing profile. |
signingProfileName
Type:
string
The name of signing profile.
signingProfileVersion
Type:
string
The version of signing profile.

.NET
Go
Java
Python
TypeScript (