register_ca_certificate
(**kwargs)¶Registers a CA certificate with Amazon Web Services IoT Core. There is no limit to the number of CA certificates you can register in your Amazon Web Services account. You can register up to 10 CA certificates with the same CA subject field
per Amazon Web Services account.
Requires permission to access the RegisterCACertificate action.
See also: AWS API Documentation
Request Syntax
response = client.register_ca_certificate(
caCertificate='string',
verificationCertificate='string',
setAsActive=True|False,
allowAutoRegistration=True|False,
registrationConfig={
'templateBody': 'string',
'roleArn': 'string',
'templateName': 'string'
},
tags=[
{
'Key': 'string',
'Value': 'string'
},
],
certificateMode='DEFAULT'|'SNI_ONLY'
)
[REQUIRED]
The CA certificate.
certificateMode
is SNI_ONLY
, the verificationCertificate
field must be empty. If certificateMode
is DEFAULT
or not provided, the verificationCertificate
field must not be empty.A boolean value that specifies if the CA certificate is set to active.
Valid values: ACTIVE | INACTIVE
Information about the registration configuration.
The template body.
The ARN of the role.
The name of the provisioning template.
Metadata which can be used to manage the CA certificate.
Note
For URI Request parameters use format: ...key1=value1&key2=value2...
For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."
For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
A set of key/value pairs that are used to manage the resource.
The tag's key.
The tag's value.
verificationCertificate
field is not provided, set certificateMode
to be SNI_ONLY
. If the verificationCertificate
field is provided, set certificateMode
to be DEFAULT
. When certificateMode
is not provided, it defaults to DEFAULT
. All the device certificates that are registered using this CA will be registered in the same certificate mode as the CA. For more information about certificate mode for device certificates, see certificate mode.dict
Response Syntax
{
'certificateArn': 'string',
'certificateId': 'string'
}
Response Structure
(dict) --
The output from the RegisterCACertificateResponse operation.
certificateArn (string) --
The CA certificate ARN.
certificateId (string) --
The CA certificate identifier.
Exceptions
IoT.Client.exceptions.ResourceNotFoundException
IoT.Client.exceptions.ResourceAlreadyExistsException
IoT.Client.exceptions.RegistrationCodeValidationException
IoT.Client.exceptions.InvalidRequestException
IoT.Client.exceptions.CertificateValidationException
IoT.Client.exceptions.ThrottlingException
IoT.Client.exceptions.LimitExceededException
IoT.Client.exceptions.UnauthorizedException
IoT.Client.exceptions.ServiceUnavailableException
IoT.Client.exceptions.InternalFailureException