@Stability(value=Stable)
public static interface CfnTrustAnchor.SourceDataProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
SourceDataProperty sourceDataProperty = SourceDataProperty.builder()
.acmPcaArn("acmPcaArn")
.x509CertificateData("x509CertificateData")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTrustAnchor.SourceDataProperty.Builder
A builder for
CfnTrustAnchor.SourceDataProperty |
static class |
CfnTrustAnchor.SourceDataProperty.Jsii$Proxy
An implementation for
CfnTrustAnchor.SourceDataProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTrustAnchor.SourceDataProperty.Builder |
builder() |
default String |
getAcmPcaArn()
The root certificate of the AWS Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests.
|
default String |
getX509CertificateData()
The PEM-encoded data for the certificate anchor.
|
@Stability(value=Stable) @Nullable default String getAcmPcaArn()
Included for trust anchors of type AWS_ACM_PCA .
@Stability(value=Stable) @Nullable default String getX509CertificateData()
Included for trust anchors of type CERTIFICATE_BUNDLE .
@Stability(value=Stable) static CfnTrustAnchor.SourceDataProperty.Builder builder()
Copyright © 2022. All rights reserved.