Module: Aws::RolesAnywhere::Types
- Defined in:
- gems/aws-sdk-rolesanywhere/lib/aws-sdk-rolesanywhere/types.rb
Defined Under Namespace
Classes: AccessDeniedException, CreateProfileRequest, CreateTrustAnchorRequest, CredentialSummary, CrlDetail, CrlDetailResponse, ImportCrlRequest, InstanceProperty, ListCrlsResponse, ListProfilesResponse, ListRequest, ListSubjectsResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, ListTrustAnchorsResponse, ProfileDetail, ProfileDetailResponse, ResourceNotFoundException, ScalarCrlRequest, ScalarProfileRequest, ScalarSubjectRequest, ScalarTrustAnchorRequest, Source, SourceData, SubjectDetail, SubjectDetailResponse, SubjectSummary, Tag, TagResourceRequest, TagResourceResponse, TooManyTagsException, TrustAnchorDetail, TrustAnchorDetailResponse, UntagResourceRequest, UntagResourceResponse, UpdateCrlRequest, UpdateProfileRequest, UpdateTrustAnchorRequest, ValidationException
Instance Attribute Summary collapse
-
#acm_pca_arn ⇒ String
The root certificate of the Certificate Manager Private Certificate Authority specified by this ARN is used in trust validation for [CreateSession][1] operations.
-
#x509_certificate_data ⇒ String
The PEM-encoded data for the certificate anchor.
Instance Attribute Details
#acm_pca_arn ⇒ String
The root certificate of the Certificate Manager Private Certificate
Authority specified by this ARN is used in trust validation for
CreateSession operations. Included for trust anchors of type
AWS_ACM_PCA
.
615 616 617 618 619 620 621 622 623 624 625 626 |
# File 'gems/aws-sdk-rolesanywhere/lib/aws-sdk-rolesanywhere/types.rb', line 615 class SourceData < Struct.new( :acm_pca_arn, :x509_certificate_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AcmPcaArn < SourceData; end class X509CertificateData < SourceData; end class Unknown < SourceData; end end |
#x509_certificate_data ⇒ String
The PEM-encoded data for the certificate anchor. Included for trust
anchors of type CERTIFICATE_BUNDLE
.
615 616 617 618 619 620 621 622 623 624 625 626 |
# File 'gems/aws-sdk-rolesanywhere/lib/aws-sdk-rolesanywhere/types.rb', line 615 class SourceData < Struct.new( :acm_pca_arn, :x509_certificate_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AcmPcaArn < SourceData; end class X509CertificateData < SourceData; end class Unknown < SourceData; end end |