Interface CfnProfile.AttributeMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProfile.AttributeMappingProperty.Jsii$Proxy
Enclosing class:
CfnProfile

@Stability(Stable) public static interface CfnProfile.AttributeMappingProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.rolesanywhere.*;
 AttributeMappingProperty attributeMappingProperty = AttributeMappingProperty.builder()
         .certificateField("certificateField")
         .mappingRules(List.of(MappingRuleProperty.builder()
                 .specifier("specifier")
                 .build()))
         .build();
 

See Also: