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

14 uses

	github.com/aws/aws-sdk-go/internal/ini (current package)
		visitor.go#L29: 			container: map[string]Section{},
		visitor.go#L85: 		v.Sections.container[name] = Section{}
		visitor.go#L97: 	container map[string]Section
		visitor.go#L102: func (t Sections) GetSection(p string) (Section, bool) {
		visitor.go#L126: type Section struct {
		visitor.go#L132: func (t Section) Has(k string) bool {
		visitor.go#L139: func (t Section) ValueType(k string) (ValueType, bool) {
		visitor.go#L145: func (t Section) Bool(k string) bool {
		visitor.go#L150: func (t Section) Int(k string) int64 {
		visitor.go#L155: func (t Section) Float64(k string) float64 {
		visitor.go#L160: func (t Section) String(k string) string {

	github.com/aws/aws-sdk-go/aws/session
		shared_config.go#L414: func updateString(dst *string, section ini.Section, key string) {
		shared_config.go#L423: func updateBool(dst *bool, section ini.Section, key string) {
		shared_config.go#L432: func updateBoolPtr(dst **bool, section ini.Section, key string) {