![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.services.datasync.CfnLocationFSxLustre.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.datasync
import io.cloudshiftdev.awscdk.CfnResource
import io.cloudshiftdev.awscdk.CfnTag
import io.cloudshiftdev.awscdk.IInspectable
import io.cloudshiftdev.awscdk.ITaggable
import io.cloudshiftdev.awscdk.TagManager
import io.cloudshiftdev.awscdk.TreeInspector
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.String
import kotlin.Unit
import kotlin.collections.List
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* The `AWS::DataSync::LocationFSxLustre` resource specifies an endpoint for an Amazon FSx for
* Lustre file system.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.services.datasync.*;
* CfnLocationFSxLustre cfnLocationFSxLustre = CfnLocationFSxLustre.Builder.create(this,
* "MyCfnLocationFSxLustre")
* .securityGroupArns(List.of("securityGroupArns"))
* // the properties below are optional
* .fsxFilesystemArn("fsxFilesystemArn")
* .subdirectory("subdirectory")
* .tags(List.of(CfnTag.builder()
* .key("key")
* .value("value")
* .build()))
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html)
*/
public open class CfnLocationFSxLustre(
cdkObject: software.amazon.awscdk.services.datasync.CfnLocationFSxLustre,
) : CfnResource(cdkObject),
IInspectable,
ITaggable {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: CfnLocationFSxLustreProps,
) :
this(software.amazon.awscdk.services.datasync.CfnLocationFSxLustre(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(CfnLocationFSxLustreProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: CfnLocationFSxLustreProps.Builder.() -> Unit,
) : this(scope, id, CfnLocationFSxLustreProps(props)
)
/**
* The ARN of the specified FSx for Lustre file system location.
*/
public open fun attrLocationArn(): String = unwrap(this).getAttrLocationArn()
/**
* The URI of the specified FSx for Lustre file system location.
*/
public open fun attrLocationUri(): String = unwrap(this).getAttrLocationUri()
/**
* The Amazon Resource Name (ARN) for the FSx for Lustre file system.
*/
public open fun fsxFilesystemArn(): String? = unwrap(this).getFsxFilesystemArn()
/**
* The Amazon Resource Name (ARN) for the FSx for Lustre file system.
*/
public open fun fsxFilesystemArn(`value`: String) {
unwrap(this).setFsxFilesystemArn(`value`)
}
/**
* Examines the CloudFormation resource and discloses attributes.
*
* @param inspector tree inspector to collect and process attributes.
*/
public override fun inspect(inspector: TreeInspector) {
unwrap(this).inspect(inspector.let(TreeInspector.Companion::unwrap))
}
/**
* The ARNs of the security groups that are used to configure the FSx for Lustre file system.
*/
public open fun securityGroupArns(): List = unwrap(this).getSecurityGroupArns()
/**
* The ARNs of the security groups that are used to configure the FSx for Lustre file system.
*/
public open fun securityGroupArns(`value`: List) {
unwrap(this).setSecurityGroupArns(`value`)
}
/**
* The ARNs of the security groups that are used to configure the FSx for Lustre file system.
*/
public open fun securityGroupArns(vararg `value`: String): Unit =
securityGroupArns(`value`.toList())
/**
* A subdirectory in the location's path.
*/
public open fun subdirectory(): String? = unwrap(this).getSubdirectory()
/**
* A subdirectory in the location's path.
*/
public open fun subdirectory(`value`: String) {
unwrap(this).setSubdirectory(`value`)
}
/**
* Tag Manager which manages the tags for this resource.
*/
public override fun tags(): TagManager = unwrap(this).getTags().let(TagManager::wrap)
/**
* The key-value pair that represents a tag that you want to add to the resource.
*/
public open fun tagsRaw(): List = unwrap(this).getTagsRaw()?.map(CfnTag::wrap) ?:
emptyList()
/**
* The key-value pair that represents a tag that you want to add to the resource.
*/
public open fun tagsRaw(`value`: List) {
unwrap(this).setTagsRaw(`value`.map(CfnTag.Companion::unwrap))
}
/**
* The key-value pair that represents a tag that you want to add to the resource.
*/
public open fun tagsRaw(vararg `value`: CfnTag): Unit = tagsRaw(`value`.toList())
/**
* A fluent builder for [io.cloudshiftdev.awscdk.services.datasync.CfnLocationFSxLustre].
*/
@CdkDslMarker
public interface Builder {
/**
* The Amazon Resource Name (ARN) for the FSx for Lustre file system.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-fsxfilesystemarn)
* @param fsxFilesystemArn The Amazon Resource Name (ARN) for the FSx for Lustre file system.
*/
public fun fsxFilesystemArn(fsxFilesystemArn: String)
/**
* The ARNs of the security groups that are used to configure the FSx for Lustre 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-securitygrouparns)
* @param securityGroupArns The ARNs of the security groups that are used to configure the FSx
* for Lustre file system.
*/
public fun securityGroupArns(securityGroupArns: List)
/**
* The ARNs of the security groups that are used to configure the FSx for Lustre 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-securitygrouparns)
* @param securityGroupArns The ARNs of the security groups that are used to configure the FSx
* for Lustre file system.
*/
public fun securityGroupArns(vararg securityGroupArns: String)
/**
* A subdirectory in the location's path.
*
* This subdirectory in the FSx for Lustre file system is used to read data from the FSx for
* Lustre source location or write data to the FSx for Lustre destination.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-subdirectory)
* @param subdirectory A subdirectory in the location's path.
*/
public fun subdirectory(subdirectory: String)
/**
* The key-value pair that represents a tag that you want to add to the resource.
*
* The value can be an empty string. This value helps you manage, filter, and search for your
* resources. We recommend that you create a name tag for your location.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-tags)
* @param tags The key-value pair that represents a tag that you want to add to the resource.
*/
public fun tags(tags: List)
/**
* The key-value pair that represents a tag that you want to add to the resource.
*
* The value can be an empty string. This value helps you manage, filter, and search for your
* resources. We recommend that you create a name tag for your location.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-tags)
* @param tags The key-value pair that represents a tag that you want to add to the resource.
*/
public fun tags(vararg tags: CfnTag)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder: software.amazon.awscdk.services.datasync.CfnLocationFSxLustre.Builder =
software.amazon.awscdk.services.datasync.CfnLocationFSxLustre.Builder.create(scope, id)
/**
* The Amazon Resource Name (ARN) for the FSx for Lustre file system.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-fsxfilesystemarn)
* @param fsxFilesystemArn The Amazon Resource Name (ARN) for the FSx for Lustre file system.
*/
override fun fsxFilesystemArn(fsxFilesystemArn: String) {
cdkBuilder.fsxFilesystemArn(fsxFilesystemArn)
}
/**
* The ARNs of the security groups that are used to configure the FSx for Lustre 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-securitygrouparns)
* @param securityGroupArns The ARNs of the security groups that are used to configure the FSx
* for Lustre file system.
*/
override fun securityGroupArns(securityGroupArns: List) {
cdkBuilder.securityGroupArns(securityGroupArns)
}
/**
* The ARNs of the security groups that are used to configure the FSx for Lustre 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.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-securitygrouparns)
* @param securityGroupArns The ARNs of the security groups that are used to configure the FSx
* for Lustre file system.
*/
override fun securityGroupArns(vararg securityGroupArns: String): Unit =
securityGroupArns(securityGroupArns.toList())
/**
* A subdirectory in the location's path.
*
* This subdirectory in the FSx for Lustre file system is used to read data from the FSx for
* Lustre source location or write data to the FSx for Lustre destination.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-subdirectory)
* @param subdirectory A subdirectory in the location's path.
*/
override fun subdirectory(subdirectory: String) {
cdkBuilder.subdirectory(subdirectory)
}
/**
* The key-value pair that represents a tag that you want to add to the resource.
*
* The value can be an empty string. This value helps you manage, filter, and search for your
* resources. We recommend that you create a name tag for your location.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-tags)
* @param tags The key-value pair that represents a tag that you want to add to the resource.
*/
override fun tags(tags: List) {
cdkBuilder.tags(tags.map(CfnTag.Companion::unwrap))
}
/**
* The key-value pair that represents a tag that you want to add to the resource.
*
* The value can be an empty string. This value helps you manage, filter, and search for your
* resources. We recommend that you create a name tag for your location.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxlustre.html#cfn-datasync-locationfsxlustre-tags)
* @param tags The key-value pair that represents a tag that you want to add to the resource.
*/
override fun tags(vararg tags: CfnTag): Unit = tags(tags.toList())
public fun build(): software.amazon.awscdk.services.datasync.CfnLocationFSxLustre =
cdkBuilder.build()
}
public companion object {
public val CFN_RESOURCE_TYPE_NAME: String =
software.amazon.awscdk.services.datasync.CfnLocationFSxLustre.CFN_RESOURCE_TYPE_NAME
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): CfnLocationFSxLustre {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return CfnLocationFSxLustre(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.datasync.CfnLocationFSxLustre):
CfnLocationFSxLustre = CfnLocationFSxLustre(cdkObject)
internal fun unwrap(wrapped: CfnLocationFSxLustre):
software.amazon.awscdk.services.datasync.CfnLocationFSxLustre = wrapped.cdkObject as
software.amazon.awscdk.services.datasync.CfnLocationFSxLustre
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy