Module: Aws::RolesAnywhere::Types

Defined in:
lib/aws-sdk-rolesanywhere/types.rb

Defined Under Namespace

Classes: AccessDeniedException, AttributeMapping, CreateProfileRequest, CreateTrustAnchorRequest, CredentialSummary, CrlDetail, CrlDetailResponse, DeleteAttributeMappingRequest, DeleteAttributeMappingResponse, ImportCrlRequest, InstanceProperty, ListCrlsResponse, ListProfilesResponse, ListRequest, ListSubjectsResponse, ListTagsForResourceRequest, ListTagsForResourceResponse, ListTrustAnchorsResponse, MappingRule, NotificationSetting, NotificationSettingDetail, NotificationSettingKey, ProfileDetail, ProfileDetailResponse, PutAttributeMappingRequest, PutAttributeMappingResponse, 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

Instance Attribute Details

#acm_pca_arnString

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`.

Returns:

  • (String)


888
889
890
891
892
893
894
895
896
897
898
899
# File 'lib/aws-sdk-rolesanywhere/types.rb', line 888

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_dataString

The PEM-encoded data for the certificate anchor. Included for trust anchors of type ‘CERTIFICATE_BUNDLE`.

Returns:

  • (String)


888
889
890
891
892
893
894
895
896
897
898
899
# File 'lib/aws-sdk-rolesanywhere/types.rb', line 888

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