interface CfnServiceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RefactorSpaces.Mixins.CfnServiceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrefactorspaces/mixins#CfnServiceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.refactorspaces.mixins.CfnServiceMixinProps |
Python | aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnServiceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_refactorspaces » mixins » CfnServiceMixinProps |
Properties for CfnServicePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as refactorspaces_mixins } from '@aws-cdk/mixins-preview/aws-refactorspaces';
const cfnServiceMixinProps: refactorspaces_mixins.CfnServiceMixinProps = {
applicationIdentifier: 'applicationIdentifier',
description: 'description',
endpointType: 'endpointType',
environmentIdentifier: 'environmentIdentifier',
lambdaEndpoint: {
arn: 'arn',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
urlEndpoint: {
healthUrl: 'healthUrl',
url: 'url',
},
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier of the application. |
| description? | string | A description of the service. |
| endpoint | string | The endpoint type of the service. |
| environment | string | The unique identifier of the environment. |
| lambda | IResolvable | Lambda | A summary of the configuration for the AWS Lambda endpoint type. |
| name? | string | The name of the service. |
| tags? | Cfn[] | The tags assigned to the service. |
| url | IResolvable | Url | The summary of the configuration for the URL endpoint type. |
| vpc | string | The ID of the virtual private cloud (VPC). |
applicationIdentifier?
Type:
string
(optional)
The unique identifier of the application.
description?
Type:
string
(optional)
A description of the service.
endpointType?
Type:
string
(optional)
The endpoint type of the service.
environmentIdentifier?
Type:
string
(optional)
The unique identifier of the environment.
lambdaEndpoint?
Type:
IResolvable | Lambda
(optional)
A summary of the configuration for the AWS Lambda endpoint type.
name?
Type:
string
(optional)
The name of the service.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the service.
urlEndpoint?
Type:
IResolvable | Url
(optional)
The summary of the configuration for the URL endpoint type.
vpcId?
Type:
string
(optional)
The ID of the virtual private cloud (VPC).

.NET
Go
Java
Python
TypeScript