Class CfnStorageSystem
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.CfnElement
software.amazon.awscdk.core.CfnRefElement
software.amazon.awscdk.core.CfnResource
software.amazon.awscdk.services.datasync.CfnStorageSystem
- All Implemented Interfaces:
- IConstruct,- IDependable,- IInspectable,- software.amazon.jsii.JsiiSerializable,- software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:29:56.212Z")
@Stability(Stable)
public class CfnStorageSystem
extends CfnResource
implements IInspectable
A CloudFormation 
AWS::DataSync::StorageSystem.
 
 The AWS::DataSync::StorageSystem resource creates an AWS resource for an on-premises storage system that you want DataSync Discovery to collect information about. For more information, see discovering your storage with DataSync Discovery.
 
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.*;
 CfnStorageSystem cfnStorageSystem = CfnStorageSystem.Builder.create(this, "MyCfnStorageSystem")
         .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();
 - 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnStorageSystem.static interfaceThe network settings that DataSync Discovery uses to connect with your on-premises storage system's management interface.static interfaceThe credentials that provide DataSync Discovery read access to your on-premises storage system's management interface.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstructIConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstructsoftware.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectableIInspectable.Jsii$Default, IInspectable.Jsii$Proxy
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class.
- 
Constructor SummaryConstructorsModifierConstructorDescriptionCfnStorageSystem(Construct scope, String id, CfnStorageSystemProps props) Create a newAWS::DataSync::StorageSystem.protectedCfnStorageSystem(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnStorageSystem(software.amazon.jsii.JsiiObjectRef objRef) 
- 
Method SummaryModifier and TypeMethodDescriptionSpecifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.Indicates whether your DataSync agent can connect to your on-premises storage system.The ARN of the secret that stores your on-premises storage system's credentials.The ARN of the on-premises storage system that you're using with DataSync Discovery.Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.getName()Specifies a familiar name for your on-premises storage system.Specifies the server name and network port required to connect with the management interface of your on-premises storage system.Specifies the user name and password for accessing your on-premises storage system's management interface.Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about.getTags()Specifies labels that help you categorize, filter, and search for your AWS resources.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetAgentArns(List<String> value) Specifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.voidsetCloudWatchLogGroupArn(String value) Specifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.voidSpecifies a familiar name for your on-premises storage system.voidSpecifies the server name and network port required to connect with the management interface of your on-premises storage system.voidSpecifies the server name and network port required to connect with the management interface of your on-premises storage system.voidsetServerCredentials(IResolvable value) Specifies the user name and password for accessing your on-premises storage system's management interface.voidSpecifies the user name and password for accessing your on-premises storage system's management interface.voidsetSystemType(String value) Specifies the type of on-premises storage system that you want DataSync Discovery to collect information about.Methods inherited from class software.amazon.awscdk.core.CfnResourceaddDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElementgetRefMethods inherited from class software.amazon.awscdk.core.CfnElementgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.ConstructgetNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Field Details- 
CFN_RESOURCE_TYPE_NAMEThe CloudFormation resource type name for this resource class.
 
- 
- 
Constructor Details- 
CfnStorageSystemprotected CfnStorageSystem(software.amazon.jsii.JsiiObjectRef objRef) 
- 
CfnStorageSystemprotected CfnStorageSystem(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) 
- 
CfnStorageSystem@Stability(Stable) public CfnStorageSystem(@NotNull Construct scope, @NotNull String id, @NotNull CfnStorageSystemProps props) Create a newAWS::DataSync::StorageSystem.- Parameters:
- scope-- scope in which this resource is defined.
 
- id-- scoped id of the resource.
 
- props-- resource properties.
 
 
 
- 
- 
Method Details- 
inspectExamines the CloudFormation resource and discloses attributes.- Specified by:
- inspectin interface- IInspectable
- Parameters:
- inspector-- tree inspector to collect and process attributes.
 
 
- 
renderProperties@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
- renderPropertiesin class- CfnResource
- Parameters:
- props- This parameter is required.
 
- 
getAttrConnectivityStatusIndicates whether your DataSync agent can connect to your on-premises storage system.
- 
getAttrSecretsManagerArnThe ARN of the secret that stores your on-premises storage system's credentials.DataSync Discovery stores these credentials in AWS Secrets Manager . 
- 
getAttrStorageSystemArnThe ARN of the on-premises storage system that you're using with DataSync Discovery.
- 
getCfnProperties- Overrides:
- getCfnPropertiesin class- CfnResource
 
- 
getTagsSpecifies labels that help you categorize, filter, and search for your AWS resources.We recommend creating at least a name tag for your on-premises storage system. 
- 
getAgentArnsSpecifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.
- 
setAgentArnsSpecifies the Amazon Resource Name (ARN) of the DataSync agent that connects to and reads from your on-premises storage system's management interface.
- 
getServerConfigurationSpecifies the server name and network port required to connect with the management interface of your on-premises storage system.
- 
setServerConfigurationSpecifies the server name and network port required to connect with the management interface of your on-premises storage system.
- 
setServerConfiguration@Stability(Stable) public void setServerConfiguration(@NotNull CfnStorageSystem.ServerConfigurationProperty value) Specifies the server name and network port required to connect with the management interface of your on-premises storage system.
- 
getSystemTypeSpecifies the type of on-premises storage system that you want DataSync Discovery to collect information about.DataSync Discovery currently supports NetApp Fabric-Attached Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later. 
- 
setSystemTypeSpecifies the type of on-premises storage system that you want DataSync Discovery to collect information about.DataSync Discovery currently supports NetApp Fabric-Attached Storage (FAS) and All Flash FAS (AFF) systems running ONTAP 9.7 or later. 
- 
getCloudWatchLogGroupArnSpecifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.
- 
setCloudWatchLogGroupArnSpecifies the ARN of the Amazon CloudWatch log group for monitoring and logging discovery job events.
- 
getNameSpecifies a familiar name for your on-premises storage system.
- 
setNameSpecifies a familiar name for your on-premises storage system.
- 
getServerCredentialsSpecifies the user name and password for accessing your on-premises storage system's management interface.
- 
setServerCredentialsSpecifies the user name and password for accessing your on-premises storage system's management interface.
- 
setServerCredentials@Stability(Stable) public void setServerCredentials(@Nullable CfnStorageSystem.ServerCredentialsProperty value) Specifies the user name and password for accessing your on-premises storage system's management interface.
 
-