Class: Aws::WorkSpacesWeb::Types::CreateTrustStoreRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::CreateTrustStoreRequest
- Defined in:
- gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:tags]
Instance Attribute Summary collapse
-
#certificate_list ⇒ Array<String>
A list of CA certificates to be added to the trust store.
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#tags ⇒ Array<Types::Tag>
The tags to add to the trust store.
Instance Attribute Details
#certificate_list ⇒ Array<String>
A list of CA certificates to be added to the trust store.
1210 1211 1212 1213 1214 1215 1216 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1210 class CreateTrustStoreRequest < Struct.new( :certificate_list, :tags, :client_token) SENSITIVE = [:tags] include Aws::Structure end |
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
A suitable default value is auto-generated. You should normally not need to pass this option.
1210 1211 1212 1213 1214 1215 1216 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1210 class CreateTrustStoreRequest < Struct.new( :certificate_list, :tags, :client_token) SENSITIVE = [:tags] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to add to the trust store. A tag is a key-value pair.
1210 1211 1212 1213 1214 1215 1216 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1210 class CreateTrustStoreRequest < Struct.new( :certificate_list, :tags, :client_token) SENSITIVE = [:tags] include Aws::Structure end |