package awscdkapprunneralpha import ( _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2" "github.com/aws/aws-cdk-go/awscdkapprunneralpha/v2/internal" ) // Represents the App Runner Service. // Experimental. type IService interface { awscdk.IResource // The ARN of the service. // Experimental. ServiceArn() *string // The Name of the service. // Experimental. ServiceName() *string } // The jsii proxy for IService type jsiiProxy_IService struct { internal.Type__awscdkIResource } func (j *jsiiProxy_IService) ServiceArn() *string { var returns *string _jsii_.Get( j, "serviceArn", &returns, ) return returns } func (j *jsiiProxy_IService) ServiceName() *string { var returns *string _jsii_.Get( j, "serviceName", &returns, ) return returns }