Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type DataStore ¶
type DataStore int
DataStore represents the different places where the data is stored.
type DataType ¶
type DataType int
DataType represents the different possible types of data that is stored.
type Options ¶
type Options struct { // DataStore represents the different places where the data is stored. DataStore DataStore // DataType represents the different possible types of data that is stored. DataType DataType // Location can represent the following depending on the DataStore property. // // * DataStoreLocal: The path to the locally stored file. // * DataStoreSecretsManager: The ARN of the SecretsManager secret. Location string // SecretsManagerClient is the AWS SDK client used to interact with SecretsManager. // This property is required when the DataStore property is set to DataStoreSecretsManager. SecretsManagerClient *secretsmanager.Client }
Click to show internal directories.
Click to hide internal directories.