package awscloudfront import ( _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2" "github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront/internal" ) // Represents a Key Group. type IKeyGroup interface { awscdk.IResource // The ID of the key group. KeyGroupId() *string } // The jsii proxy for IKeyGroup type jsiiProxy_IKeyGroup struct { internal.Type__awscdkIResource } func (j *jsiiProxy_IKeyGroup) KeyGroupId() *string { var returns *string _jsii_.Get( j, "keyGroupId", &returns, ) return returns }