public MyStack() { var example = new Aws.Fsx.WindowsFileSystem("example", new Aws.Fsx.WindowsFileSystemArgs { ActiveDirectoryId = aws_directory_service_directory.Example.Id, KmsKeyId = aws_kms_key.Example.Arn, StorageCapacity = 300, SubnetIds = aws_subnet.Example.Id, ThroughputCapacity = 1024, }); }
public MyStack() { var example = new Aws.Fsx.WindowsFileSystem("example", new Aws.Fsx.WindowsFileSystemArgs { KmsKeyId = aws_kms_key.Example.Arn, SelfManagedActiveDirectory = new Aws.Fsx.Inputs.WindowsFileSystemSelfManagedActiveDirectoryArgs { DnsIps = { "10.0.0.111", "10.0.0.222", }, DomainName = "corp.example.com", Password = "******", Username = "******", }, StorageCapacity = 300, SubnetIds = aws_subnet.Example.Id, ThroughputCapacity = 1024, }); }