package awsfsx import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnStorageVirtualMachine`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnStorageVirtualMachineProps := &CfnStorageVirtualMachineProps{ // FileSystemId: jsii.String("fileSystemId"), // Name: jsii.String("name"), // // // the properties below are optional // ActiveDirectoryConfiguration: &ActiveDirectoryConfigurationProperty{ // NetBiosName: jsii.String("netBiosName"), // SelfManagedActiveDirectoryConfiguration: &SelfManagedActiveDirectoryConfigurationProperty{ // DnsIps: []*string{ // jsii.String("dnsIps"), // }, // DomainName: jsii.String("domainName"), // FileSystemAdministratorsGroup: jsii.String("fileSystemAdministratorsGroup"), // OrganizationalUnitDistinguishedName: jsii.String("organizationalUnitDistinguishedName"), // Password: jsii.String("password"), // UserName: jsii.String("userName"), // }, // }, // RootVolumeSecurityStyle: jsii.String("rootVolumeSecurityStyle"), // SvmAdminPassword: jsii.String("svmAdminPassword"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-storagevirtualmachine.html // type CfnStorageVirtualMachineProps struct { // Specifies the FSx for ONTAP file system on which to create the SVM. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-storagevirtualmachine.html#cfn-fsx-storagevirtualmachine-filesystemid // FileSystemId *string `field:"required" json:"fileSystemId" yaml:"fileSystemId"` // The name of the SVM. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-storagevirtualmachine.html#cfn-fsx-storagevirtualmachine-name // Name *string `field:"required" json:"name" yaml:"name"` // Describes the Microsoft Active Directory configuration to which the SVM is joined, if applicable. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-storagevirtualmachine.html#cfn-fsx-storagevirtualmachine-activedirectoryconfiguration // ActiveDirectoryConfiguration interface{} `field:"optional" json:"activeDirectoryConfiguration" yaml:"activeDirectoryConfiguration"` // The security style of the root volume of the SVM. Specify one of the following values:. // // - `UNIX` if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. // - `NTFS` if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account. // - `MIXED` if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-storagevirtualmachine.html#cfn-fsx-storagevirtualmachine-rootvolumesecuritystyle // RootVolumeSecurityStyle *string `field:"optional" json:"rootVolumeSecurityStyle" yaml:"rootVolumeSecurityStyle"` // Specifies the password to use when logging on to the SVM using a secure shell (SSH) connection to the SVM's management endpoint. // // Doing so enables you to manage the SVM using the NetApp ONTAP CLI or REST API. If you do not specify a password, you can still use the file system's `fsxadmin` user to manage the SVM. For more information, see [Managing SVMs using the NetApp ONTAP CLI](https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-resources-ontap-apps.html#vsadmin-ontap-cli) in the *FSx for ONTAP User Guide* . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-storagevirtualmachine.html#cfn-fsx-storagevirtualmachine-svmadminpassword // SvmAdminPassword *string `field:"optional" json:"svmAdminPassword" yaml:"svmAdminPassword"` // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-storagevirtualmachine.html#cfn-fsx-storagevirtualmachine-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }