aws-sdk 2.1356.0 → 2.1358.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -7
- package/README.md +1 -1
- package/apis/chime-sdk-voice-2022-08-03.min.json +93 -86
- package/apis/groundstation-2019-05-23.min.json +58 -48
- package/apis/mediaconnect-2018-11-14.min.json +1604 -287
- package/apis/mediaconnect-2018-11-14.paginators.json +18 -0
- package/clients/chimesdkvoice.d.ts +15 -3
- package/clients/groundstation.d.ts +32 -17
- package/clients/managedblockchain.d.ts +7 -7
- package/clients/mediaconnect.d.ts +1008 -19
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -1,5 +1,11 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "pagination" : {
         | 
| 3 | 
            +
                "ListBridges" : {
         | 
| 4 | 
            +
                  "input_token" : "NextToken",
         | 
| 5 | 
            +
                  "output_token" : "NextToken",
         | 
| 6 | 
            +
                  "limit_key" : "MaxResults",
         | 
| 7 | 
            +
                  "result_key" : "Bridges"
         | 
| 8 | 
            +
                },
         | 
| 3 9 | 
             
                "ListEntitlements" : {
         | 
| 4 10 | 
             
                  "input_token" : "NextToken",
         | 
| 5 11 | 
             
                  "output_token" : "NextToken",
         | 
| @@ -12,6 +18,18 @@ | |
| 12 18 | 
             
                  "limit_key" : "MaxResults",
         | 
| 13 19 | 
             
                  "result_key" : "Flows"
         | 
| 14 20 | 
             
                },
         | 
| 21 | 
            +
                "ListGatewayInstances" : {
         | 
| 22 | 
            +
                  "input_token" : "NextToken",
         | 
| 23 | 
            +
                  "output_token" : "NextToken",
         | 
| 24 | 
            +
                  "limit_key" : "MaxResults",
         | 
| 25 | 
            +
                  "result_key" : "Instances"
         | 
| 26 | 
            +
                },
         | 
| 27 | 
            +
                "ListGateways" : {
         | 
| 28 | 
            +
                  "input_token" : "NextToken",
         | 
| 29 | 
            +
                  "output_token" : "NextToken",
         | 
| 30 | 
            +
                  "limit_key" : "MaxResults",
         | 
| 31 | 
            +
                  "result_key" : "Gateways"
         | 
| 32 | 
            +
                },
         | 
| 15 33 | 
             
                "ListOfferings" : {
         | 
| 16 34 | 
             
                  "input_token" : "NextToken",
         | 
| 17 35 | 
             
                  "output_token" : "NextToken",
         | 
| @@ -1011,6 +1011,10 @@ declare namespace ChimeSDKVoice { | |
| 1011 1011 | 
             
                 * List of endpoints (Lambda ARNs) specified for the SIP media application.
         | 
| 1012 1012 | 
             
                 */
         | 
| 1013 1013 | 
             
                Endpoints: SipMediaApplicationEndpointList;
         | 
| 1014 | 
            +
                /**
         | 
| 1015 | 
            +
                 * The tags assigned to the SIP media application.
         | 
| 1016 | 
            +
                 */
         | 
| 1017 | 
            +
                Tags?: TagList;
         | 
| 1014 1018 | 
             
              }
         | 
| 1015 1019 | 
             
              export interface CreateSipMediaApplicationResponse {
         | 
| 1016 1020 | 
             
                /**
         | 
| @@ -1075,6 +1079,10 @@ declare namespace ChimeSDKVoice { | |
| 1075 1079 | 
             
                 * Enables or disables encryption for the Voice Connector.
         | 
| 1076 1080 | 
             
                 */
         | 
| 1077 1081 | 
             
                RequireEncryption: Boolean;
         | 
| 1082 | 
            +
                /**
         | 
| 1083 | 
            +
                 * The tags assigned to the Voice Connector.
         | 
| 1084 | 
            +
                 */
         | 
| 1085 | 
            +
                Tags?: TagList;
         | 
| 1078 1086 | 
             
              }
         | 
| 1079 1087 | 
             
              export interface CreateVoiceConnectorResponse {
         | 
| 1080 1088 | 
             
                /**
         | 
| @@ -1286,7 +1294,7 @@ declare namespace ChimeSDKVoice { | |
| 1286 1294 | 
             
              export type GeoMatchLevel = "Country"|"AreaCode"|string;
         | 
| 1287 1295 | 
             
              export interface GeoMatchParams {
         | 
| 1288 1296 | 
             
                /**
         | 
| 1289 | 
            -
                 * The country. | 
| 1297 | 
            +
                 * The country.
         | 
| 1290 1298 | 
             
                 */
         | 
| 1291 1299 | 
             
                Country: Country;
         | 
| 1292 1300 | 
             
                /**
         | 
| @@ -1826,7 +1834,7 @@ declare namespace ChimeSDKVoice { | |
| 1826 1834 | 
             
              }
         | 
| 1827 1835 | 
             
              export interface LoggingConfiguration {
         | 
| 1828 1836 | 
             
                /**
         | 
| 1829 | 
            -
                 * Boolean that enables sending SIP message logs to Amazon CloudWatch | 
| 1837 | 
            +
                 * Boolean that enables sending SIP message logs to Amazon CloudWatch.
         | 
| 1830 1838 | 
             
                 */
         | 
| 1831 1839 | 
             
                EnableSIPLogs?: Boolean;
         | 
| 1832 1840 | 
             
                /**
         | 
| @@ -2388,7 +2396,7 @@ declare namespace ChimeSDKVoice { | |
| 2388 2396 | 
             
                 */
         | 
| 2389 2397 | 
             
                Name?: SipMediaApplicationName;
         | 
| 2390 2398 | 
             
                /**
         | 
| 2391 | 
            -
                 * List of endpoints for SIP media application. Currently, only one endpoint per SIP media application is permitted.
         | 
| 2399 | 
            +
                 * List of endpoints for a SIP media application. Currently, only one endpoint per SIP media application is permitted.
         | 
| 2392 2400 | 
             
                 */
         | 
| 2393 2401 | 
             
                Endpoints?: SipMediaApplicationEndpointList;
         | 
| 2394 2402 | 
             
                /**
         | 
| @@ -2399,6 +2407,10 @@ declare namespace ChimeSDKVoice { | |
| 2399 2407 | 
             
                 * The time at which the SIP media application was updated.
         | 
| 2400 2408 | 
             
                 */
         | 
| 2401 2409 | 
             
                UpdatedTimestamp?: Iso8601Timestamp;
         | 
| 2410 | 
            +
                /**
         | 
| 2411 | 
            +
                 * The ARN of the SIP media application.
         | 
| 2412 | 
            +
                 */
         | 
| 2413 | 
            +
                SipMediaApplicationArn?: NonEmptyString;
         | 
| 2402 2414 | 
             
              }
         | 
| 2403 2415 | 
             
              export interface SipMediaApplicationAlexaSkillConfiguration {
         | 
| 2404 2416 | 
             
                /**
         | 
| @@ -101,11 +101,11 @@ declare class GroundStation extends Service { | |
| 101 101 | 
             
               */
         | 
| 102 102 | 
             
              describeEphemeris(callback?: (err: AWSError, data: GroundStation.Types.DescribeEphemerisResponse) => void): Request<GroundStation.Types.DescribeEphemerisResponse, AWSError>;
         | 
| 103 103 | 
             
              /**
         | 
| 104 | 
            -
               * Gets the latest configuration information for a registered agent.
         | 
| 104 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Gets the latest configuration information for a registered agent.
         | 
| 105 105 | 
             
               */
         | 
| 106 106 | 
             
              getAgentConfiguration(params: GroundStation.Types.GetAgentConfigurationRequest, callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
         | 
| 107 107 | 
             
              /**
         | 
| 108 | 
            -
               * Gets the latest configuration information for a registered agent.
         | 
| 108 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Gets the latest configuration information for a registered agent.
         | 
| 109 109 | 
             
               */
         | 
| 110 110 | 
             
              getAgentConfiguration(callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
         | 
| 111 111 | 
             
              /**
         | 
| @@ -213,11 +213,11 @@ declare class GroundStation extends Service { | |
| 213 213 | 
             
               */
         | 
| 214 214 | 
             
              listTagsForResource(callback?: (err: AWSError, data: GroundStation.Types.ListTagsForResourceResponse) => void): Request<GroundStation.Types.ListTagsForResourceResponse, AWSError>;
         | 
| 215 215 | 
             
              /**
         | 
| 216 | 
            -
               * Registers a new agent with AWS  | 
| 216 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.   Registers a new agent with AWS Ground Station. 
         | 
| 217 217 | 
             
               */
         | 
| 218 218 | 
             
              registerAgent(params: GroundStation.Types.RegisterAgentRequest, callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
         | 
| 219 219 | 
             
              /**
         | 
| 220 | 
            -
               * Registers a new agent with AWS  | 
| 220 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.   Registers a new agent with AWS Ground Station. 
         | 
| 221 221 | 
             
               */
         | 
| 222 222 | 
             
              registerAgent(callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
         | 
| 223 223 | 
             
              /**
         | 
| @@ -245,11 +245,11 @@ declare class GroundStation extends Service { | |
| 245 245 | 
             
               */
         | 
| 246 246 | 
             
              untagResource(callback?: (err: AWSError, data: GroundStation.Types.UntagResourceResponse) => void): Request<GroundStation.Types.UntagResourceResponse, AWSError>;
         | 
| 247 247 | 
             
              /**
         | 
| 248 | 
            -
               * Update the status of the agent.
         | 
| 248 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Update the status of the agent.
         | 
| 249 249 | 
             
               */
         | 
| 250 250 | 
             
              updateAgentStatus(params: GroundStation.Types.UpdateAgentStatusRequest, callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
         | 
| 251 251 | 
             
              /**
         | 
| 252 | 
            -
               * Update the status of the agent.
         | 
| 252 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Update the status of the agent.
         | 
| 253 253 | 
             
               */
         | 
| 254 254 | 
             
              updateAgentStatus(callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
         | 
| 255 255 | 
             
              /**
         | 
| @@ -287,7 +287,12 @@ declare class GroundStation extends Service { | |
| 287 287 | 
             
            }
         | 
| 288 288 | 
             
            declare namespace GroundStation {
         | 
| 289 289 | 
             
              export type AWSRegion = string;
         | 
| 290 | 
            +
              export type AgentCpuCoresList = Integer[];
         | 
| 290 291 | 
             
              export interface AgentDetails {
         | 
| 292 | 
            +
                /**
         | 
| 293 | 
            +
                 * List of CPU cores reserved for the agent.
         | 
| 294 | 
            +
                 */
         | 
| 295 | 
            +
                agentCpuCores?: AgentCpuCoresList;
         | 
| 291 296 | 
             
                /**
         | 
| 292 297 | 
             
                 * Current agent version.
         | 
| 293 298 | 
             
                 */
         | 
| @@ -305,9 +310,9 @@ declare namespace GroundStation { | |
| 305 310 | 
             
                 */
         | 
| 306 311 | 
             
                instanceType: InstanceType;
         | 
| 307 312 | 
             
                /**
         | 
| 308 | 
            -
                 *  | 
| 313 | 
            +
                 *  This field should not be used. Use agentCpuCores instead.  List of CPU cores reserved for processes other than the agent running on the EC2 instance.
         | 
| 309 314 | 
             
                 */
         | 
| 310 | 
            -
                reservedCpuCores | 
| 315 | 
            +
                reservedCpuCores?: AgentCpuCoresList;
         | 
| 311 316 | 
             
              }
         | 
| 312 317 | 
             
              export type AgentStatus = "SUCCESS"|"FAILED"|"ACTIVE"|"INACTIVE"|string;
         | 
| 313 318 | 
             
              export interface AggregateStatus {
         | 
| @@ -396,6 +401,9 @@ declare namespace GroundStation { | |
| 396 401 | 
             
              }
         | 
| 397 402 | 
             
              export type CapabilityArn = string;
         | 
| 398 403 | 
             
              export type CapabilityArnList = CapabilityArn[];
         | 
| 404 | 
            +
              export type CapabilityHealth = "UNHEALTHY"|"HEALTHY"|string;
         | 
| 405 | 
            +
              export type CapabilityHealthReason = "NO_REGISTERED_AGENT"|"INVALID_IP_OWNERSHIP"|"NOT_AUTHORIZED_TO_CREATE_SLR"|"UNVERIFIED_IP_OWNERSHIP"|"INITIALIZING_DATAPLANE"|"DATAPLANE_FAILURE"|"HEALTHY"|string;
         | 
| 406 | 
            +
              export type CapabilityHealthReasonList = CapabilityHealthReason[];
         | 
| 399 407 | 
             
              export interface ComponentStatusData {
         | 
| 400 408 | 
             
                /**
         | 
| 401 409 | 
             
                 * Bytes received by the component.
         | 
| @@ -412,7 +420,7 @@ declare namespace GroundStation { | |
| 412 420 | 
             
                /**
         | 
| 413 421 | 
             
                 * The Component type.
         | 
| 414 422 | 
             
                 */
         | 
| 415 | 
            -
                componentType:  | 
| 423 | 
            +
                componentType: ComponentTypeString;
         | 
| 416 424 | 
             
                /**
         | 
| 417 425 | 
             
                 * Dataflow UUID associated with the component.
         | 
| 418 426 | 
             
                 */
         | 
| @@ -427,12 +435,12 @@ declare namespace GroundStation { | |
| 427 435 | 
             
                status: AgentStatus;
         | 
| 428 436 | 
             
              }
         | 
| 429 437 | 
             
              export type ComponentStatusList = ComponentStatusData[];
         | 
| 430 | 
            -
              export type  | 
| 438 | 
            +
              export type ComponentTypeString = string;
         | 
| 431 439 | 
             
              export interface ComponentVersion {
         | 
| 432 440 | 
             
                /**
         | 
| 433 441 | 
             
                 * Component type.
         | 
| 434 442 | 
             
                 */
         | 
| 435 | 
            -
                componentType:  | 
| 443 | 
            +
                componentType: ComponentTypeString;
         | 
| 436 444 | 
             
                /**
         | 
| 437 445 | 
             
                 * List of versions.
         | 
| 438 446 | 
             
                 */
         | 
| @@ -603,11 +611,11 @@ declare namespace GroundStation { | |
| 603 611 | 
             
              }
         | 
| 604 612 | 
             
              export interface CreateDataflowEndpointGroupRequest {
         | 
| 605 613 | 
             
                /**
         | 
| 606 | 
            -
                 * Amount of time, in seconds, after a contact ends  | 
| 614 | 
            +
                 * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
         | 
| 607 615 | 
             
                 */
         | 
| 608 616 | 
             
                contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 609 617 | 
             
                /**
         | 
| 610 | 
            -
                 * Amount of time, in seconds,  | 
| 618 | 
            +
                 * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
         | 
| 611 619 | 
             
                 */
         | 
| 612 620 | 
             
                contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 613 621 | 
             
                /**
         | 
| @@ -968,6 +976,14 @@ declare namespace GroundStation { | |
| 968 976 | 
             
                 * A dataflow endpoint.
         | 
| 969 977 | 
             
                 */
         | 
| 970 978 | 
             
                endpoint?: DataflowEndpoint;
         | 
| 979 | 
            +
                /**
         | 
| 980 | 
            +
                 * Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.
         | 
| 981 | 
            +
                 */
         | 
| 982 | 
            +
                healthReasons?: CapabilityHealthReasonList;
         | 
| 983 | 
            +
                /**
         | 
| 984 | 
            +
                 * A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.
         | 
| 985 | 
            +
                 */
         | 
| 986 | 
            +
                healthStatus?: CapabilityHealth;
         | 
| 971 987 | 
             
                /**
         | 
| 972 988 | 
             
                 * Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.
         | 
| 973 989 | 
             
                 */
         | 
| @@ -1134,11 +1150,11 @@ declare namespace GroundStation { | |
| 1134 1150 | 
             
              }
         | 
| 1135 1151 | 
             
              export interface GetDataflowEndpointGroupResponse {
         | 
| 1136 1152 | 
             
                /**
         | 
| 1137 | 
            -
                 * Amount of time, in seconds, after a contact ends  | 
| 1153 | 
            +
                 * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
         | 
| 1138 1154 | 
             
                 */
         | 
| 1139 1155 | 
             
                contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 1140 1156 | 
             
                /**
         | 
| 1141 | 
            -
                 * Amount of time, in seconds,  | 
| 1157 | 
            +
                 * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
         | 
| 1142 1158 | 
             
                 */
         | 
| 1143 1159 | 
             
                contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 1144 1160 | 
             
                /**
         | 
| @@ -1584,7 +1600,7 @@ declare namespace GroundStation { | |
| 1584 1600 | 
             
                 */
         | 
| 1585 1601 | 
             
                agentDetails: AgentDetails;
         | 
| 1586 1602 | 
             
                /**
         | 
| 1587 | 
            -
                 * Data for associating  | 
| 1603 | 
            +
                 * Data for associating an agent with the capabilities it is managing.
         | 
| 1588 1604 | 
             
                 */
         | 
| 1589 1605 | 
             
                discoveryData: DiscoveryData;
         | 
| 1590 1606 | 
             
              }
         | 
| @@ -1620,7 +1636,6 @@ declare namespace GroundStation { | |
| 1620 1636 | 
             
                 */
         | 
| 1621 1637 | 
             
                tags?: TagsMap;
         | 
| 1622 1638 | 
             
              }
         | 
| 1623 | 
            -
              export type ReservedCpuCoresList = Integer[];
         | 
| 1624 1639 | 
             
              export type RoleArn = string;
         | 
| 1625 1640 | 
             
              export type S3BucketName = string;
         | 
| 1626 1641 | 
             
              export type S3KeyPrefix = string;
         | 
| @@ -235,7 +235,7 @@ declare namespace ManagedBlockchain { | |
| 235 235 | 
             
                 */
         | 
| 236 236 | 
             
                Id?: ResourceIdString;
         | 
| 237 237 | 
             
                /**
         | 
| 238 | 
            -
                 * The type of the accessor.  Currently accessor type is restricted to BILLING_TOKEN. 
         | 
| 238 | 
            +
                 * The type of the accessor.  Currently, accessor type is restricted to BILLING_TOKEN. 
         | 
| 239 239 | 
             
                 */
         | 
| 240 240 | 
             
                Type?: AccessorType;
         | 
| 241 241 | 
             
                /**
         | 
| @@ -309,7 +309,7 @@ declare namespace ManagedBlockchain { | |
| 309 309 | 
             
                 */
         | 
| 310 310 | 
             
                ClientRequestToken: ClientRequestTokenString;
         | 
| 311 311 | 
             
                /**
         | 
| 312 | 
            -
                 * The type of accessor.  Currently accessor type is restricted to BILLING_TOKEN. 
         | 
| 312 | 
            +
                 * The type of accessor.  Currently, accessor type is restricted to BILLING_TOKEN. 
         | 
| 313 313 | 
             
                 */
         | 
| 314 314 | 
             
                AccessorType: AccessorType;
         | 
| 315 315 | 
             
                /**
         | 
| @@ -405,7 +405,7 @@ declare namespace ManagedBlockchain { | |
| 405 405 | 
             
                 */
         | 
| 406 406 | 
             
                ClientRequestToken: ClientRequestTokenString;
         | 
| 407 407 | 
             
                /**
         | 
| 408 | 
            -
                 * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby | 
| 408 | 
            +
                 * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby   
         | 
| 409 409 | 
             
                 */
         | 
| 410 410 | 
             
                NetworkId: ResourceIdString;
         | 
| 411 411 | 
             
                /**
         | 
| @@ -481,7 +481,7 @@ declare namespace ManagedBlockchain { | |
| 481 481 | 
             
              }
         | 
| 482 482 | 
             
              export interface DeleteNodeInput {
         | 
| 483 483 | 
             
                /**
         | 
| 484 | 
            -
                 * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby | 
| 484 | 
            +
                 * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby   
         | 
| 485 485 | 
             
                 */
         | 
| 486 486 | 
             
                NetworkId: ResourceIdString;
         | 
| 487 487 | 
             
                /**
         | 
| @@ -915,7 +915,7 @@ declare namespace ManagedBlockchain { | |
| 915 915 | 
             
                 */
         | 
| 916 916 | 
             
                AdminUsername: UsernameString;
         | 
| 917 917 | 
             
                /**
         | 
| 918 | 
            -
                 * The password for the member's initial administrative user. The AdminPassword must be at least  | 
| 918 | 
            +
                 * The password for the member's initial administrative user. The AdminPassword must be at least 8 characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(\), @, or a space.
         | 
| 919 919 | 
             
                 */
         | 
| 920 920 | 
             
                AdminPassword: PasswordString;
         | 
| 921 921 | 
             
              }
         | 
| @@ -1007,7 +1007,7 @@ declare namespace ManagedBlockchain { | |
| 1007 1007 | 
             
                 */
         | 
| 1008 1008 | 
             
                VpcEndpointServiceName?: String;
         | 
| 1009 1009 | 
             
                /**
         | 
| 1010 | 
            -
                 * The voting rules  | 
| 1010 | 
            +
                 * The voting rules that the network uses to decide if a proposal is accepted.
         | 
| 1011 1011 | 
             
                 */
         | 
| 1012 1012 | 
             
                VotingPolicy?: VotingPolicy;
         | 
| 1013 1013 | 
             
                /**
         | 
| @@ -1029,7 +1029,7 @@ declare namespace ManagedBlockchain { | |
| 1029 1029 | 
             
              }
         | 
| 1030 1030 | 
             
              export interface NetworkEthereumAttributes {
         | 
| 1031 1031 | 
             
                /**
         | 
| 1032 | 
            -
                 * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows:   mainnet = 1    goerli = 5    rinkeby = 4 | 
| 1032 | 
            +
                 * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows:   mainnet = 1    goerli = 5    rinkeby = 4   
         | 
| 1033 1033 | 
             
                 */
         | 
| 1034 1034 | 
             
                ChainId?: String;
         | 
| 1035 1035 | 
             
              }
         |