Show / Hide Table of Contents

Interface ICfnServiceProps

Properties for defining a CfnService.

Namespace: Amazon.CDK.AWS.RefactorSpaces
Assembly: Amazon.CDK.AWS.RefactorSpaces.dll
Syntax (csharp)
public interface ICfnServiceProps
Syntax (vb)
Public Interface ICfnServiceProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RefactorSpaces;

var cfnServiceProps = new CfnServiceProps {
    ApplicationIdentifier = "applicationIdentifier",
    EndpointType = "endpointType",
    EnvironmentIdentifier = "environmentIdentifier",
    Name = "name",

    // the properties below are optional
    Description = "description",
    LambdaEndpoint = new LambdaEndpointInputProperty {
        Arn = "arn"
    },
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } },
    UrlEndpoint = new UrlEndpointInputProperty {
        Url = "url",

        // the properties below are optional
        HealthUrl = "healthUrl"
    },
    VpcId = "vpcId"
};

Synopsis

Properties

ApplicationIdentifier

The unique identifier of the application.

Description

A description of the service.

EndpointType

The endpoint type of the service.

EnvironmentIdentifier

The unique identifier of the environment.

LambdaEndpoint

A summary of the configuration for the AWS Lambda endpoint type.

Name

The name of the service.

Tags

The tags assigned to the service.

UrlEndpoint

The summary of the configuration for the URL endpoint type.

VpcId

The ID of the virtual private cloud (VPC).

Properties

ApplicationIdentifier

The unique identifier of the application.

string ApplicationIdentifier { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-applicationidentifier

Description

A description of the service.

virtual string Description { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-description

EndpointType

The endpoint type of the service.

string EndpointType { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-endpointtype

EnvironmentIdentifier

The unique identifier of the environment.

string EnvironmentIdentifier { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-environmentidentifier

LambdaEndpoint

A summary of the configuration for the AWS Lambda endpoint type.

virtual object LambdaEndpoint { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-lambdaendpoint

Name

The name of the service.

string Name { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-name

Tags

The tags assigned to the service.

virtual ICfnTag[] Tags { get; }
Property Value

ICfnTag[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-tags

UrlEndpoint

The summary of the configuration for the URL endpoint type.

virtual object UrlEndpoint { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-urlendpoint

VpcId

The ID of the virtual private cloud (VPC).

virtual string VpcId { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-service.html#cfn-refactorspaces-service-vpcid

Back to top Generated by DocFX