type github.com/aws/aws-sdk-go/internal/ini.Sections

14 uses

	github.com/aws/aws-sdk-go/internal/ini (current package)
		ini.go#L12: func OpenFile(path string) (Sections, error) {
		ini.go#L15: 		return Sections{}, awserr.New(ErrCodeUnableToReadFile, "unable to open file", err)
		ini.go#L24: func Parse(f io.Reader) (Sections, error) {
		ini.go#L27: 		return Sections{}, err
		ini.go#L32: 		return Sections{}, err
		ini.go#L39: func ParseBytes(b []byte) (Sections, error) {
		ini.go#L42: 		return Sections{}, err
		ini.go#L47: 		return Sections{}, err
		visitor.go#L22: 	Sections Sections
		visitor.go#L28: 		Sections: Sections{
		visitor.go#L96: type Sections struct {
		visitor.go#L102: func (t Sections) GetSection(p string) (Section, bool) {
		visitor.go#L112: func (t Sections) List() []string {

	github.com/aws/aws-sdk-go/aws/session
		shared_config.go#L126: 	IniData  ini.Sections