// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package mediastoredata import ( "time" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" ) var _ aws.Config var _ = awsutil.Prettify // A metadata entry for a folder or object. type Item struct { _ struct{} `type:"structure"` // The length of the item in bytes. ContentLength *int64 `type:"long"` // The content type of the item. ContentType *string `type:"string"` // The ETag that represents a unique instance of the item. ETag *string `min:"1" type:"string"` // The date and time that the item was last modified. LastModified *time.Time `type:"timestamp"` // The name of the item. Name *string `type:"string"` // The item type (folder or object). Type ItemType `type:"string" enum:"true"` } // String returns the string representation func (s Item) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s Item) MarshalFields(e protocol.FieldEncoder) error { if s.ContentLength != nil { v := *s.ContentLength metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "ContentLength", protocol.Int64Value(v), metadata) } if s.ContentType != nil { v := *s.ContentType metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "ContentType", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.ETag != nil { v := *s.ETag metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "ETag", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.LastModified != nil { v := *s.LastModified metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "LastModified", protocol.TimeValue{V: v, Format: protocol.UnixTimeFormatName, QuotedFormatTime: true}, metadata) } if s.Name != nil { v := *s.Name metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "Name", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if len(s.Type) > 0 { v := s.Type metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "Type", protocol.QuotedValue{ValueMarshaler: v}, metadata) } return nil }