Interface CfnLocationFSxWindowsMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLocationFSxWindowsMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.datasync.*;
CfnLocationFSxWindowsMixinProps cfnLocationFSxWindowsMixinProps = CfnLocationFSxWindowsMixinProps.builder()
.cmkSecretConfig(CmkSecretConfigProperty.builder()
.kmsKeyArn("kmsKeyArn")
.secretArn("secretArn")
.build())
.customSecretConfig(CustomSecretConfigProperty.builder()
.secretAccessRoleArn("secretAccessRoleArn")
.secretArn("secretArn")
.build())
.domain("domain")
.fsxFilesystemArn("fsxFilesystemArn")
.password("password")
.securityGroupArns(List.of("securityGroupArns"))
.subdirectory("subdirectory")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.user("user")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLocationFSxWindowsMixinPropsstatic final classAn implementation forCfnLocationFSxWindowsMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.default ObjectSpecifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.default StringSpecifies the name of the Windows domain that the FSx for Windows File Server file system belongs to.default StringSpecifies the Amazon Resource Name (ARN) for the FSx for Windows File Server file system.default StringSpecifies the password of the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system.The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Windows File Server file system.default StringSpecifies a mount path for your file system using forward slashes.getTags()Specifies labels that help you categorize, filter, and search for your AWS resources.default StringgetUser()The user who has the permissions to access files and folders in the FSx for Windows File Server file system.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCmkSecretConfig
Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed AWS KMS key.Returns union: either
IResolvableorCfnLocationFSxWindowsPropsMixin.CmkSecretConfigProperty- See Also:
-
getCustomSecretConfig
Specifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.Returns union: either
IResolvableorCfnLocationFSxWindowsPropsMixin.CustomSecretConfigProperty- See Also:
-
getDomain
Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to.If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.
- See Also:
-
getFsxFilesystemArn
Specifies the Amazon Resource Name (ARN) for the FSx for Windows File Server file system.- See Also:
-
getPassword
Specifies the password of the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system.- See Also:
-
getSecurityGroupArns
The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Windows File Server file system.Pattern :
^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:security-group/.*$Length constraints : Maximum length of 128.
- See Also:
-
getSubdirectory
Specifies a mount path for your file system using forward slashes.This is where DataSync reads or writes data (depending on if this is a source or destination location).
- See Also:
-
getTags
Specifies labels that help you categorize, filter, and search for your AWS resources.We recommend creating at least a name tag for your location.
- See Also:
-
getUser
The user who has the permissions to access files and folders in the FSx for Windows File Server file system.For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see user .
- See Also:
-
builder
-