You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::DirectoryService::Types::CreateMicrosoftADRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::CreateMicrosoftADRequest
- Defined in:
- (unknown)
Overview
When passing CreateMicrosoftADRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
name: "DirectoryName", # required
short_name: "DirectoryShortName",
password: "Password", # required
description: "Description",
vpc_settings: { # required
vpc_id: "VpcId", # required
subnet_ids: ["SubnetId"], # required
},
edition: "Enterprise", # accepts Enterprise, Standard
tags: [
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Creates an AWS Managed Microsoft AD directory.
Instance Attribute Summary collapse
-
#description ⇒ String
A description for the directory.
-
#edition ⇒ String
AWS Managed Microsoft AD is available in two editions:
StandardandEnterprise. -
#name ⇒ String
The fully qualified domain name for the AWS Managed Microsoft AD directory, such as
corp.example.com. -
#password ⇒ String
The password for the default administrative user named
Admin. -
#short_name ⇒ String
The NetBIOS name for your domain, such as
CORP. -
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the AWS Managed Microsoft AD directory.
-
#vpc_settings ⇒ Types::DirectoryVpcSettings
Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.
Instance Attribute Details
#description ⇒ String
A description for the directory. This label will appear on the AWS
console Directory Details page after the directory is created.
#edition ⇒ String
AWS Managed Microsoft AD is available in two editions: Standard and
Enterprise. Enterprise is the default.
Possible values:
- Enterprise
- Standard
#name ⇒ String
The fully qualified domain name for the AWS Managed Microsoft AD
directory, such as corp.example.com. This name will resolve inside
your VPC only. It does not need to be publicly resolvable.
#password ⇒ String
The password for the default administrative user named Admin.
If you need to change the password for the administrator account, you can use the ResetUserPassword API call.
#short_name ⇒ String
The NetBIOS name for your domain, such as CORP. If you don\'t specify
a NetBIOS name, it will default to the first part of your directory DNS.
For example, CORP for the directory DNS corp.example.com.
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the AWS Managed Microsoft AD directory.
#vpc_settings ⇒ Types::DirectoryVpcSettings
Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.