Interface CfnPhoneNumberProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPhoneNumberProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:06.097Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPhoneNumberPropsstatic final classAn implementation forCfnPhoneNumberProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPhoneNumberProps.Builderbuilder()The ISO country code.default StringThe description of the phone number.default StringThe 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.- See Also:
-
getTargetArn
The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution group that phone numbers are claimed to.- See Also:
-
getType
The type of phone number.- See Also:
-
getDescription
The description of the phone number.- See Also:
-
getPrefix
The prefix of the phone number. If provided, it must contain+as part of the country code.Pattern :
^\\+[0-9]{1,15}- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.For example, { "tags": {"key1":"value1", "key2":"value2"} }.
- See Also:
-
builder
- Returns:
- a
CfnPhoneNumberProps.BuilderofCfnPhoneNumberProps
-