Class: Aws::WorkSpacesWeb::Types::TrustStore

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb

Overview

A trust store that can be associated with a web portal. A trust store contains certificate authority (CA) certificates. Once associated with a web portal, the browser in a streaming session will recognize certificates that have been issued using any of the CAs in the trust store. If your organization has internal websites that use certificates issued by private CAs, you should add the private CA certificate to the trust store.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#associated_portal_arnsArray<String>

A list of web portal ARNs that this trust store is associated with.

Returns:

  • (Array<String>)


2760
2761
2762
2763
2764
2765
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2760

class TrustStore < Struct.new(
  :associated_portal_arns,
  :trust_store_arn)
  SENSITIVE = []
  include Aws::Structure
end

#trust_store_arnString

The ARN of the trust store.

Returns:

  • (String)


2760
2761
2762
2763
2764
2765
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2760

class TrustStore < Struct.new(
  :associated_portal_arns,
  :trust_store_arn)
  SENSITIVE = []
  include Aws::Structure
end