# Functions
NewSession - This function creates an AWS session using the defaults
Example: sess, err := session.NewSession().
NewSessionWithConfig - This function creates an AWS session using the provided configuration
Example: sess, err := session.NewSessionWithConfig(awsConf).
NewSessionWithOptions - This function creates an AWS session using the provided options
Example: sess, err := session.NewSessionWithOptions(options).