Documentation ¶
Index ¶
Constants ¶
View Source
const ( // Name is the provider's name. Name = "efs" // TagDelimiter separates tags from volume or snapshot names TagDelimiter = "/" // DefaultMaxRetries is the max number of times to retry failed operations DefaultMaxRetries = 10 // InstanceIDFieldRegion is the key to retrieve the region value from the // InstanceID Field map. InstanceIDFieldRegion = "region" // InstanceIDFieldAvailabilityZone is the key to retrieve the availability // zone value from the InstanceID Field map. InstanceIDFieldAvailabilityZone = "availabilityZone" // InstanceIDFieldSecurityGroups is the key to retrieve the default security // group value from the InstanceID Field map. InstanceIDFieldSecurityGroups = "securityGroups" // AccessKey is a key constant. AccessKey = "accessKey" // SecretKey is a key constant. SecretKey = "secretKey" // Region is a key constant. Region = "region" // SecurityGroups is a key constant. SecurityGroups = "securityGroups" // Endpoint is a key constant. Endpoint = "endpoint" // EndpointFormat is a key constant. EndpointFormat = "endpointFormat" // MaxRetries is a key constant. MaxRetries = "maxRetries" // Tag is a key constant. Tag = "tag" // DisableSessionCache is a key constant. DisableSessionCache = "disableSessionCache" )
View Source
const ( // ConfigEFS is a config key. ConfigEFS = Name // ConfigEFSAccessKey is a config key. ConfigEFSAccessKey = ConfigEFS + "." + AccessKey // ConfigEFSSecretKey is a config key. ConfigEFSSecretKey = ConfigEFS + "." + SecretKey // ConfigEFSRegion is a config key. ConfigEFSRegion = ConfigEFS + "." + Region // ConfigEFSSecGroups is a config key. ConfigEFSSecGroups = ConfigEFS + "." + SecurityGroups // ConfigEFSEndpoint is a config key. ConfigEFSEndpoint = ConfigEFS + "." + Endpoint // ConfigEFSEndpointFormat is a config key. ConfigEFSEndpointFormat = ConfigEFS + "." + EndpointFormat // ConfigEFSMaxRetries is a config key. ConfigEFSMaxRetries = ConfigEFS + "." + MaxRetries // ConfigEFSTag is a config key. ConfigEFSTag = ConfigEFS + "." + Tag // ConfigEFSDisableSessionCache is a config key. ConfigEFSDisableSessionCache = ConfigEFS + "." + DisableSessionCache // ConfigStatusMaxAttempts is the key for the maximum number of times // a volume status will be queried when waiting for an action to finish ConfigStatusMaxAttempts = ConfigEFS + "." + statusMaxAttempts // ConfigStatusInitDelay is the key for the initial time duration // for exponential backoff ConfigStatusInitDelay = ConfigEFS + "." + statusInitialDelay // ConfigStatusTimeout is the key for the time duration for a timeout // on how long to wait for a desired volume status to appears ConfigStatusTimeout = ConfigEFS + "." + statusTimeout )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.