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, NotificationSetting, NotificationSettingDetail, NotificationSettingKey, ProfileDetail, ProfileDetailResponse, PutNotificationSettingsRequest, PutNotificationSettingsResponse, ResetNotificationSettingsRequest, ResetNotificationSettingsResponse, 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 Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests.
-
#x509_certificate_data ⇒ String
The PEM-encoded data for the certificate anchor.
Instance Attribute Details
#acm_pca_arn ⇒ String
The root certificate of the Private Certificate Authority specified
by this ARN is used in trust validation for temporary credential
requests. Included for trust anchors of type AWS_ACM_PCA
.
749 750 751 752 753 754 755 756 757 758 759 760 |
# File 'gems/aws-sdk-rolesanywhere/lib/aws-sdk-rolesanywhere/types.rb', line 749 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
.
749 750 751 752 753 754 755 756 757 758 759 760 |
# File 'gems/aws-sdk-rolesanywhere/lib/aws-sdk-rolesanywhere/types.rb', line 749 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 |