Class: Aws::AlexaForBusiness::Types::CreateAddressBookRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::CreateAddressBookRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass CreateAddressBookRequest data as a hash:
{
name: "AddressBookName", # required
description: "AddressBookDescription",
client_request_token: "ClientRequestToken",
tags: [
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A unique, user-specified identifier for the request that ensures idempotency.
-
#description ⇒ String
The description of the address book.
-
#name ⇒ String
The name of the address book.
-
#tags ⇒ Array<Types::Tag>
The tags to be added to the specified resource.
Instance Attribute Details
#client_request_token ⇒ String
A unique, user-specified identifier for the request that ensures idempotency.
A suitable default value is auto-generated. You should normally not need to pass this option.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 744 class CreateAddressBookRequest < Struct.new( :name, :description, :client_request_token, :tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the address book.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 744 class CreateAddressBookRequest < Struct.new( :name, :description, :client_request_token, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the address book.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 744 class CreateAddressBookRequest < Struct.new( :name, :description, :client_request_token, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tags to be added to the specified resource. Do not provide system tags.
744 745 746 747 748 749 750 751 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 744 class CreateAddressBookRequest < Struct.new( :name, :description, :client_request_token, :tags) SENSITIVE = [] include Aws::Structure end |