interface AttributeMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RolesAnywhere.Mixins.CfnProfilePropsMixin.AttributeMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrolesanywhere/mixins#CfnProfilePropsMixin_AttributeMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.rolesanywhere.mixins.CfnProfilePropsMixin.AttributeMappingProperty |
Python | aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnProfilePropsMixin.AttributeMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rolesanywhere » mixins » CfnProfilePropsMixin » AttributeMappingProperty |
A mapping applied to the authenticating end-entity certificate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rolesanywhere_mixins } from '@aws-cdk/mixins-preview/aws-rolesanywhere';
const attributeMappingProperty: rolesanywhere_mixins.CfnProfilePropsMixin.AttributeMappingProperty = {
certificateField: 'certificateField',
mappingRules: [{
specifier: 'specifier',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | Fields (x509Subject, x509Issuer and x509SAN) within X.509 certificates. |
| mapping | IResolvable | (IResolvable | Mapping)[] | A list of mapping entries for every supported specifier or sub-field. |
certificateField?
Type:
string
(optional)
Fields (x509Subject, x509Issuer and x509SAN) within X.509 certificates.
mappingRules?
Type:
IResolvable | (IResolvable | Mapping)[]
(optional)
A list of mapping entries for every supported specifier or sub-field.

.NET
Go
Java
Python
TypeScript