Interface CfnStorageSystemProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStorageSystemProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-20T23:52:53.137Z")
@Stability(Stable)
public interface CfnStorageSystemProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnStorageSystem.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.datasync.*;
CfnStorageSystemProps cfnStorageSystemProps = CfnStorageSystemProps.builder()
.agentArns(List.of("agentArns"))
.serverConfiguration(ServerConfigurationProperty.builder()
.serverHostname("serverHostname")
// the properties below are optional
.serverPort(123)
.build())
.systemType("systemType")
// the properties below are optional
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.name("name")
.serverCredentials(ServerCredentialsProperty.builder()
.password("password")
.username("username")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStorageSystemPropsstatic final classAn implementation forCfnStorageSystemProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAgentArns
- See Also:
-
getServerConfiguration
- See Also:
-
getSystemType
- See Also:
-
getCloudWatchLogGroupArn
- See Also:
-
getName
- See Also:
-
getServerCredentials
- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnStorageSystemProps.BuilderofCfnStorageSystemProps
-