aws logo
AWS Classic v5.41.0, May 15 23

aws.appsync.DomainNameApiAssociation

Explore with Pulumi AI

Provides an AppSync API Association.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.AppSync.DomainNameApiAssociation("example", new()
    {
        ApiId = aws_appsync_graphql_api.Example.Id,
        DomainName = aws_appsync_domain_name.Example.Domain_name,
    });

});
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/appsync"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := appsync.NewDomainNameApiAssociation(ctx, "example", &appsync.DomainNameApiAssociationArgs{
			ApiId:      pulumi.Any(aws_appsync_graphql_api.Example.Id),
			DomainName: pulumi.Any(aws_appsync_domain_name.Example.Domain_name),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appsync.DomainNameApiAssociation;
import com.pulumi.aws.appsync.DomainNameApiAssociationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new DomainNameApiAssociation("example", DomainNameApiAssociationArgs.builder()        
            .apiId(aws_appsync_graphql_api.example().id())
            .domainName(aws_appsync_domain_name.example().domain_name())
            .build());

    }
}
import pulumi
import pulumi_aws as aws

example = aws.appsync.DomainNameApiAssociation("example",
    api_id=aws_appsync_graphql_api["example"]["id"],
    domain_name=aws_appsync_domain_name["example"]["domain_name"])
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.appsync.DomainNameApiAssociation("example", {
    apiId: aws_appsync_graphql_api.example.id,
    domainName: aws_appsync_domain_name.example.domain_name,
});
resources:
  example:
    type: aws:appsync:DomainNameApiAssociation
    properties:
      apiId: ${aws_appsync_graphql_api.example.id}
      domainName: ${aws_appsync_domain_name.example.domain_name}

Create DomainNameApiAssociation Resource

new DomainNameApiAssociation(name: string, args: DomainNameApiAssociationArgs, opts?: CustomResourceOptions);
@overload
def DomainNameApiAssociation(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             api_id: Optional[str] = None,
                             domain_name: Optional[str] = None)
@overload
def DomainNameApiAssociation(resource_name: str,
                             args: DomainNameApiAssociationArgs,
                             opts: Optional[ResourceOptions] = None)
func NewDomainNameApiAssociation(ctx *Context, name string, args DomainNameApiAssociationArgs, opts ...ResourceOption) (*DomainNameApiAssociation, error)
public DomainNameApiAssociation(string name, DomainNameApiAssociationArgs args, CustomResourceOptions? opts = null)
public DomainNameApiAssociation(String name, DomainNameApiAssociationArgs args)
public DomainNameApiAssociation(String name, DomainNameApiAssociationArgs args, CustomResourceOptions options)
type: aws:appsync:DomainNameApiAssociation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args DomainNameApiAssociationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args DomainNameApiAssociationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args DomainNameApiAssociationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DomainNameApiAssociationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DomainNameApiAssociationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

DomainNameApiAssociation Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The DomainNameApiAssociation resource accepts the following input properties:

ApiId string

API ID.

DomainName string

Appsync domain name.

ApiId string

API ID.

DomainName string

Appsync domain name.

apiId String

API ID.

domainName String

Appsync domain name.

apiId string

API ID.

domainName string

Appsync domain name.

api_id str

API ID.

domain_name str

Appsync domain name.

apiId String

API ID.

domainName String

Appsync domain name.

Outputs

All input properties are implicitly available as output properties. Additionally, the DomainNameApiAssociation resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing DomainNameApiAssociation Resource

Get an existing DomainNameApiAssociation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DomainNameApiAssociationState, opts?: CustomResourceOptions): DomainNameApiAssociation
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        api_id: Optional[str] = None,
        domain_name: Optional[str] = None) -> DomainNameApiAssociation
func GetDomainNameApiAssociation(ctx *Context, name string, id IDInput, state *DomainNameApiAssociationState, opts ...ResourceOption) (*DomainNameApiAssociation, error)
public static DomainNameApiAssociation Get(string name, Input<string> id, DomainNameApiAssociationState? state, CustomResourceOptions? opts = null)
public static DomainNameApiAssociation get(String name, Output<String> id, DomainNameApiAssociationState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ApiId string

API ID.

DomainName string

Appsync domain name.

ApiId string

API ID.

DomainName string

Appsync domain name.

apiId String

API ID.

domainName String

Appsync domain name.

apiId string

API ID.

domainName string

Appsync domain name.

api_id str

API ID.

domain_name str

Appsync domain name.

apiId String

API ID.

domainName String

Appsync domain name.

Import

aws_appsync_domain_name_api_association can be imported using the AppSync domain name, e.g.,

 $ pulumi import aws:appsync/domainNameApiAssociation:DomainNameApiAssociation example example.com

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes

This Pulumi package is based on the aws Terraform Provider.