Class: Aws::DirectoryService::Types::CreateAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::CreateAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Contains the inputs for the CreateAlias operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alias ⇒ String
The requested alias.
-
#directory_id ⇒ String
The identifier of the directory for which to create the alias.
Instance Attribute Details
#alias ⇒ String
The requested alias.
The alias must be unique amongst all aliases in Amazon Web Services. This operation throws an EntityAlreadyExistsException error if the alias already exists.
937 938 939 940 941 942 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 937 class CreateAliasRequest < Struct.new( :directory_id, :alias) SENSITIVE = [] include Aws::Structure end |
#directory_id ⇒ String
The identifier of the directory for which to create the alias.
937 938 939 940 941 942 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 937 class CreateAliasRequest < Struct.new( :directory_id, :alias) SENSITIVE = [] include Aws::Structure end |