UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

74 lines (73 loc) 2.51 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Associates a service with a service network. */ export declare function getServiceNetworkServiceAssociation(args: GetServiceNetworkServiceAssociationArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceNetworkServiceAssociationResult>; export interface GetServiceNetworkServiceAssociationArgs { /** * The Amazon Resource Name (ARN) of the association between the service network and the service. */ arn: string; } export interface GetServiceNetworkServiceAssociationResult { /** * The Amazon Resource Name (ARN) of the association between the service network and the service. */ readonly arn?: string; /** * The date and time that the association was created, specified in ISO-8601 format. */ readonly createdAt?: string; /** * The DNS information of the service. */ readonly dnsEntry?: outputs.vpclattice.ServiceNetworkServiceAssociationDnsEntry; /** * The ID of the of the association between the service network and the service. */ readonly id?: string; /** * The Amazon Resource Name (ARN) of the service. */ readonly serviceArn?: string; /** * The ID of the service. */ readonly serviceId?: string; /** * The name of the service. */ readonly serviceName?: string; /** * The Amazon Resource Name (ARN) of the service network */ readonly serviceNetworkArn?: string; /** * The ID of the service network. */ readonly serviceNetworkId?: string; /** * The name of the service network. */ readonly serviceNetworkName?: string; /** * The status of the association between the service network and the service. */ readonly status?: enums.vpclattice.ServiceNetworkServiceAssociationStatus; /** * The tags for the association. */ readonly tags?: outputs.Tag[]; } /** * Associates a service with a service network. */ export declare function getServiceNetworkServiceAssociationOutput(args: GetServiceNetworkServiceAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceNetworkServiceAssociationResult>; export interface GetServiceNetworkServiceAssociationOutputArgs { /** * The Amazon Resource Name (ARN) of the association between the service network and the service. */ arn: pulumi.Input<string>; }