Skip to content

Commit

Permalink
refactor(ec2-vpc-endpoint-connection): switch to exported field
Browse files Browse the repository at this point in the history
  • Loading branch information
ma3574 committed Oct 18, 2024
1 parent 58a5b77 commit f9c7101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/ec2-vpc-endpoint-connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (l *EC2VPCEndpointConnectionLister) List(_ context.Context, o interface{})
VPCEndpointID: endpointConnection.VpcEndpointId,
State: endpointConnection.VpcEndpointState,
Owner: endpointConnection.VpcEndpointOwner,
tags: endpointConnection.Tags,
Tags: endpointConnection.Tags,
})
}

Expand All @@ -72,7 +72,7 @@ type EC2VPCEndpointConnection struct {
VPCEndpointID *string
State *string
Owner *string
tags []*ec2.Tag
Tags []*ec2.Tag
}

func (r *EC2VPCEndpointConnection) Filter() error {
Expand Down

0 comments on commit f9c7101

Please sign in to comment.