interface CloudMapNamespaceOptionsBase
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CloudMapNamespaceOptionsBase |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CloudMapNamespaceOptionsBase |
Java | software.amazon.awscdk.services.ecs.CloudMapNamespaceOptionsBase |
Python | aws_cdk.aws_ecs.CloudMapNamespaceOptionsBase |
TypeScript (source) | aws-cdk-lib » aws_ecs » CloudMapNamespaceOptionsBase |
Options shared by all ways of setting the default AWS Cloud Map namespace of a cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const cloudMapNamespaceOptionsBase: ecs.CloudMapNamespaceOptionsBase = {
useForServiceConnect: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| use | boolean | This property specifies whether to set the provided namespace as the service connect default in the cluster properties. |
useForServiceConnect?
Type:
boolean
(optional, default: false)
This property specifies whether to set the provided namespace as the service connect default in the cluster properties.

.NET
Go
Java
Python
TypeScript (