package awsservicediscovery import ( _init_ "github.com/aws/aws-cdk-go/awscdk/v2/jsii" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2" "github.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2" "github.com/aws/aws-cdk-go/awscdk/v2/awsservicediscovery/internal" "github.com/aws/constructs-go/constructs/v10" ) // Define a CloudMap Service. // // Example: // import "github.com/aws/aws-cdk-go/awscdk" // import "github.com/aws/aws-cdk-go/awscdk" // // app := cdk.NewApp() // stack := cdk.NewStack(app, jsii.String("aws-servicediscovery-integ")) // // namespace := servicediscovery.NewPublicDnsNamespace(stack, jsii.String("Namespace"), &PublicDnsNamespaceProps{ // Name: jsii.String("foobar.com"), // }) // // service := namespace.CreateService(jsii.String("Service"), &DnsServiceProps{ // Name: jsii.String("foo"), // DnsRecordType: servicediscovery.DnsRecordType_A, // DnsTtl: cdk.Duration_Seconds(jsii.Number(30)), // HealthCheck: &HealthCheckConfig{ // Type: servicediscovery.HealthCheckType_HTTPS, // ResourcePath: jsii.String("/healthcheck"), // FailureThreshold: jsii.Number(2), // }, // }) // // service.RegisterIpInstance(jsii.String("IpInstance"), &IpInstanceBaseProps{ // Ipv4: jsii.String("54.239.25.192"), // Port: jsii.Number(443), // }) // // app.Synth() // type Service interface { awscdk.Resource IService // The discovery type used by this service. DiscoveryType() DiscoveryType // The DnsRecordType used by the service. DnsRecordType() DnsRecordType // The environment this resource belongs to. // // For resources that are created and managed by the CDK // (generally, those created by creating new class instances like Role, Bucket, etc.), // this is always the same as the environment of the stack they belong to; // however, for imported resources // (those obtained from static methods like fromRoleArn, fromBucketName, etc.), // that might be different than the stack they were imported into. Env() *awscdk.ResourceEnvironment // The namespace for the Cloudmap Service. Namespace() INamespace // The tree node. Node() constructs.Node // Returns a string-encoded token that resolves to the physical name that should be passed to the CloudFormation resource. // // This value will resolve to one of the following: // - a concrete value (e.g. `"my-awesome-bucket"`) // - `undefined`, when a name should be generated by CloudFormation // - a concrete name generated automatically during synthesis, in // cross-environment scenarios. PhysicalName() *string // The Routing Policy used by the service. RoutingPolicy() RoutingPolicy // The Arn of the namespace that you want to use for DNS configuration. ServiceArn() *string // The ID of the namespace that you want to use for DNS configuration. ServiceId() *string // A name for the Cloudmap Service. ServiceName() *string // The stack in which this resource is defined. Stack() awscdk.Stack // Apply the given removal policy to this resource. // // The Removal Policy controls what happens to this resource when it stops // being managed by CloudFormation, either because you've removed it from the // CDK application or because you've made a change that requires the resource // to be replaced. // // The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS // account for data recovery and cleanup later (`RemovalPolicy.RETAIN`). ApplyRemovalPolicy(policy awscdk.RemovalPolicy) GeneratePhysicalName() *string // Returns an environment-sensitive token that should be used for the resource's "ARN" attribute (e.g. `bucket.bucketArn`). // // Normally, this token will resolve to `arnAttr`, but if the resource is // referenced across environments, `arnComponents` will be used to synthesize // a concrete ARN with the resource's physical name. Make sure to reference // `this.physicalName` in `arnComponents`. GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string // Returns an environment-sensitive token that should be used for the resource's "name" attribute (e.g. `bucket.bucketName`). // // Normally, this token will resolve to `nameAttr`, but if the resource is // referenced across environments, it will be resolved to `this.physicalName`, // which will be a concrete name. GetResourceNameAttribute(nameAttr *string) *string // Registers a resource that is accessible using a CNAME. RegisterCnameInstance(id *string, props *CnameInstanceBaseProps) IInstance // Registers a resource that is accessible using an IP address. RegisterIpInstance(id *string, props *IpInstanceBaseProps) IInstance // Registers an ELB as a new instance with unique name instanceId in this service. RegisterLoadBalancer(id *string, loadBalancer awselasticloadbalancingv2.ILoadBalancerV2, customAttributes *map[string]*string) IInstance // Registers a resource that is accessible using values other than an IP address or a domain name (CNAME). RegisterNonIpInstance(id *string, props *NonIpInstanceBaseProps) IInstance // Returns a string representation of this construct. ToString() *string } // The jsii proxy struct for Service type jsiiProxy_Service struct { internal.Type__awscdkResource jsiiProxy_IService } func (j *jsiiProxy_Service) DiscoveryType() DiscoveryType { var returns DiscoveryType _jsii_.Get( j, "discoveryType", &returns, ) return returns } func (j *jsiiProxy_Service) DnsRecordType() DnsRecordType { var returns DnsRecordType _jsii_.Get( j, "dnsRecordType", &returns, ) return returns } func (j *jsiiProxy_Service) Env() *awscdk.ResourceEnvironment { var returns *awscdk.ResourceEnvironment _jsii_.Get( j, "env", &returns, ) return returns } func (j *jsiiProxy_Service) Namespace() INamespace { var returns INamespace _jsii_.Get( j, "namespace", &returns, ) return returns } func (j *jsiiProxy_Service) Node() constructs.Node { var returns constructs.Node _jsii_.Get( j, "node", &returns, ) return returns } func (j *jsiiProxy_Service) PhysicalName() *string { var returns *string _jsii_.Get( j, "physicalName", &returns, ) return returns } func (j *jsiiProxy_Service) RoutingPolicy() RoutingPolicy { var returns RoutingPolicy _jsii_.Get( j, "routingPolicy", &returns, ) return returns } func (j *jsiiProxy_Service) ServiceArn() *string { var returns *string _jsii_.Get( j, "serviceArn", &returns, ) return returns } func (j *jsiiProxy_Service) ServiceId() *string { var returns *string _jsii_.Get( j, "serviceId", &returns, ) return returns } func (j *jsiiProxy_Service) ServiceName() *string { var returns *string _jsii_.Get( j, "serviceName", &returns, ) return returns } func (j *jsiiProxy_Service) Stack() awscdk.Stack { var returns awscdk.Stack _jsii_.Get( j, "stack", &returns, ) return returns } func NewService(scope constructs.Construct, id *string, props *ServiceProps) Service { _init_.Initialize() if err := validateNewServiceParameters(scope, id, props); err != nil { panic(err) } j := jsiiProxy_Service{} _jsii_.Create( "aws-cdk-lib.aws_servicediscovery.Service", []interface{}{scope, id, props}, &j, ) return &j } func NewService_Override(s Service, scope constructs.Construct, id *string, props *ServiceProps) { _init_.Initialize() _jsii_.Create( "aws-cdk-lib.aws_servicediscovery.Service", []interface{}{scope, id, props}, s, ) } func Service_FromServiceAttributes(scope constructs.Construct, id *string, attrs *ServiceAttributes) IService { _init_.Initialize() if err := validateService_FromServiceAttributesParameters(scope, id, attrs); err != nil { panic(err) } var returns IService _jsii_.StaticInvoke( "aws-cdk-lib.aws_servicediscovery.Service", "fromServiceAttributes", []interface{}{scope, id, attrs}, &returns, ) return returns } // Checks if `x` is a construct. // // Use this method instead of `instanceof` to properly detect `Construct` // instances, even when the construct library is symlinked. // // Explanation: in JavaScript, multiple copies of the `constructs` library on // disk are seen as independent, completely different libraries. As a // consequence, the class `Construct` in each copy of the `constructs` library // is seen as a different class, and an instance of one class will not test as // `instanceof` the other class. `npm install` will not create installations // like this, but users may manually symlink construct libraries together or // use a monorepo tool: in those cases, multiple copies of the `constructs` // library can be accidentally installed, and `instanceof` will behave // unpredictably. It is safest to avoid using `instanceof`, and using // this type-testing method instead. // // Returns: true if `x` is an object created from a class which extends `Construct`. func Service_IsConstruct(x interface{}) *bool { _init_.Initialize() if err := validateService_IsConstructParameters(x); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_servicediscovery.Service", "isConstruct", []interface{}{x}, &returns, ) return returns } // Returns true if the construct was created by CDK, and false otherwise. func Service_IsOwnedResource(construct constructs.IConstruct) *bool { _init_.Initialize() if err := validateService_IsOwnedResourceParameters(construct); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_servicediscovery.Service", "isOwnedResource", []interface{}{construct}, &returns, ) return returns } // Check whether the given construct is a Resource. func Service_IsResource(construct constructs.IConstruct) *bool { _init_.Initialize() if err := validateService_IsResourceParameters(construct); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_servicediscovery.Service", "isResource", []interface{}{construct}, &returns, ) return returns } func (s *jsiiProxy_Service) ApplyRemovalPolicy(policy awscdk.RemovalPolicy) { if err := s.validateApplyRemovalPolicyParameters(policy); err != nil { panic(err) } _jsii_.InvokeVoid( s, "applyRemovalPolicy", []interface{}{policy}, ) } func (s *jsiiProxy_Service) GeneratePhysicalName() *string { var returns *string _jsii_.Invoke( s, "generatePhysicalName", nil, // no parameters &returns, ) return returns } func (s *jsiiProxy_Service) GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string { if err := s.validateGetResourceArnAttributeParameters(arnAttr, arnComponents); err != nil { panic(err) } var returns *string _jsii_.Invoke( s, "getResourceArnAttribute", []interface{}{arnAttr, arnComponents}, &returns, ) return returns } func (s *jsiiProxy_Service) GetResourceNameAttribute(nameAttr *string) *string { if err := s.validateGetResourceNameAttributeParameters(nameAttr); err != nil { panic(err) } var returns *string _jsii_.Invoke( s, "getResourceNameAttribute", []interface{}{nameAttr}, &returns, ) return returns } func (s *jsiiProxy_Service) RegisterCnameInstance(id *string, props *CnameInstanceBaseProps) IInstance { if err := s.validateRegisterCnameInstanceParameters(id, props); err != nil { panic(err) } var returns IInstance _jsii_.Invoke( s, "registerCnameInstance", []interface{}{id, props}, &returns, ) return returns } func (s *jsiiProxy_Service) RegisterIpInstance(id *string, props *IpInstanceBaseProps) IInstance { if err := s.validateRegisterIpInstanceParameters(id, props); err != nil { panic(err) } var returns IInstance _jsii_.Invoke( s, "registerIpInstance", []interface{}{id, props}, &returns, ) return returns } func (s *jsiiProxy_Service) RegisterLoadBalancer(id *string, loadBalancer awselasticloadbalancingv2.ILoadBalancerV2, customAttributes *map[string]*string) IInstance { if err := s.validateRegisterLoadBalancerParameters(id, loadBalancer); err != nil { panic(err) } var returns IInstance _jsii_.Invoke( s, "registerLoadBalancer", []interface{}{id, loadBalancer, customAttributes}, &returns, ) return returns } func (s *jsiiProxy_Service) RegisterNonIpInstance(id *string, props *NonIpInstanceBaseProps) IInstance { if err := s.validateRegisterNonIpInstanceParameters(id, props); err != nil { panic(err) } var returns IInstance _jsii_.Invoke( s, "registerNonIpInstance", []interface{}{id, props}, &returns, ) return returns } func (s *jsiiProxy_Service) ToString() *string { var returns *string _jsii_.Invoke( s, "toString", nil, // no parameters &returns, ) return returns }