Interface CfnLocationObjectStorage.ManagedSecretConfigProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnLocationObjectStorage.ManagedSecretConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnLocationObjectStorage
@Stability(Stable)
public static interface CfnLocationObjectStorage.ManagedSecretConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.
 
DataSync uses the default AWS -managed KMS key to encrypt this secret in AWS Secrets Manager .
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.*;
 ManagedSecretConfigProperty managedSecretConfigProperty = ManagedSecretConfigProperty.builder()
         .secretArn("secretArn")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLocationObjectStorage.ManagedSecretConfigPropertystatic final classAn implementation forCfnLocationObjectStorage.ManagedSecretConfigProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getSecretArnSpecifies the ARN for an AWS Secrets Manager secret.- See Also:
 
- 
builder
 
-