Interface CfnPhoneNumberProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPhoneNumberProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.988Z")
@Stability(Stable)
public interface CfnPhoneNumberProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPhoneNumber
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.connect.*; CfnPhoneNumberProps cfnPhoneNumberProps = CfnPhoneNumberProps.builder() .countryCode("countryCode") .targetArn("targetArn") .type("type") // the properties below are optional .description("description") .prefix("prefix") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPhoneNumberProps
static final class
An implementation forCfnPhoneNumberProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPhoneNumberProps.Builder
builder()
The ISO country code.default String
The description of the phone number.default String
The prefix of the phone number.getTags()
The tags used to organize, track, or control access for this resource.The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution group that phone numbers are claimed to.getType()
The type of phone number.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCountryCode
The ISO country code. -
getTargetArn
The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution group that phone numbers are claimed to. -
getType
The type of phone number. -
getDescription
The description of the phone number. -
getPrefix
The prefix of the phone number. If provided, it must contain+
as part of the country code.Pattern :
^\\+[0-9]{1,15}
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "tags": {"key1":"value1", "key2":"value2"} }.
-
builder
- Returns:
- a
CfnPhoneNumberProps.Builder
ofCfnPhoneNumberProps
-