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>)


2557
2558
2559
2560
2561
2562
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2557

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)


2557
2558
2559
2560
2561
2562
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2557

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