本文整理匯總了Golang中github.com/aws/aws-sdk-go/service/iot.New函數的典型用法代碼示例。如果您正苦於以下問題:Golang New函數的具體用法?Golang New怎麽用?Golang New使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了New函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ExampleIoT_DeprecateThingType
func ExampleIoT_DeprecateThingType() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.DeprecateThingTypeInput{
ThingTypeName: aws.String("ThingTypeName"), // Required
UndoDeprecate: aws.Bool(true),
}
resp, err := svc.DeprecateThingType(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例2: ExampleIoT_DetachThingPrincipal
func ExampleIoT_DetachThingPrincipal() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.DetachThingPrincipalInput{
Principal: aws.String("Principal"), // Required
ThingName: aws.String("ThingName"), // Required
}
resp, err := svc.DetachThingPrincipal(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例3: ExampleIoT_AcceptCertificateTransfer
func ExampleIoT_AcceptCertificateTransfer() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.AcceptCertificateTransferInput{
CertificateId: aws.String("CertificateId"), // Required
SetAsActive: aws.Bool(true),
}
resp, err := svc.AcceptCertificateTransfer(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例4: ExampleIoT_CreateThing
func ExampleIoT_CreateThing() {
svc := iot.New(session.New())
params := &iot.CreateThingInput{
ThingName: aws.String("ThingName"), // Required
AttributePayload: &iot.AttributePayload{
Attributes: map[string]*string{
"Key": aws.String("AttributeValue"), // Required
// More values...
},
Merge: aws.Bool(true),
},
ThingTypeName: aws.String("ThingTypeName"),
}
resp, err := svc.CreateThing(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例5: ExampleIoT_ListThings
func ExampleIoT_ListThings() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.ListThingsInput{
AttributeName: aws.String("AttributeName"),
AttributeValue: aws.String("AttributeValue"),
MaxResults: aws.Int64(1),
NextToken: aws.String("NextToken"),
ThingTypeName: aws.String("ThingTypeName"),
}
resp, err := svc.ListThings(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例6: ExampleIoT_ListCertificates
func ExampleIoT_ListCertificates() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.ListCertificatesInput{
AscendingOrder: aws.Bool(true),
Marker: aws.String("Marker"),
PageSize: aws.Int64(1),
}
resp, err := svc.ListCertificates(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例7: ExampleIoT_UpdateThing
func ExampleIoT_UpdateThing() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.UpdateThingInput{
ThingName: aws.String("ThingName"), // Required
AttributePayload: &iot.AttributePayload{
Attributes: map[string]*string{
"Key": aws.String("AttributeValue"), // Required
// More values...
},
Merge: aws.Bool(true),
},
ExpectedVersion: aws.Int64(1),
RemoveThingType: aws.Bool(true),
ThingTypeName: aws.String("ThingTypeName"),
}
resp, err := svc.UpdateThing(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例8: ExampleIoT_CreateThingType
func ExampleIoT_CreateThingType() {
svc := iot.New(session.New())
params := &iot.CreateThingTypeInput{
ThingTypeName: aws.String("ThingTypeName"), // Required
ThingTypeProperties: &iot.ThingTypeProperties{
SearchableAttributes: []*string{
aws.String("AttributeName"), // Required
// More values...
},
ThingTypeDescription: aws.String("ThingTypeDescription"),
},
}
resp, err := svc.CreateThingType(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例9: ExampleIoT_TransferCertificate
func ExampleIoT_TransferCertificate() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.TransferCertificateInput{
CertificateId: aws.String("CertificateId"), // Required
TargetAwsAccount: aws.String("AwsAccountId"), // Required
TransferMessage: aws.String("Message"),
}
resp, err := svc.TransferCertificate(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例10: ExampleIoT_UpdateCertificate
func ExampleIoT_UpdateCertificate() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.UpdateCertificateInput{
CertificateId: aws.String("CertificateId"), // Required
NewStatus: aws.String("CertificateStatus"), // Required
}
resp, err := svc.UpdateCertificate(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例11: ExampleIoT_SetLoggingOptions
func ExampleIoT_SetLoggingOptions() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.SetLoggingOptionsInput{
LoggingOptionsPayload: &iot.LoggingOptionsPayload{ // Required
RoleArn: aws.String("AwsArn"), // Required
LogLevel: aws.String("LogLevel"),
},
}
resp, err := svc.SetLoggingOptions(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例12: ExampleIoT_RegisterCACertificate
func ExampleIoT_RegisterCACertificate() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.RegisterCACertificateInput{
CaCertificate: aws.String("CertificatePem"), // Required
VerificationCertificate: aws.String("CertificatePem"), // Required
AllowAutoRegistration: aws.Bool(true),
SetAsActive: aws.Bool(true),
}
resp, err := svc.RegisterCACertificate(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例13: ExampleIoT_ListTopicRules
func ExampleIoT_ListTopicRules() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.ListTopicRulesInput{
MaxResults: aws.Int64(1),
NextToken: aws.String("NextToken"),
RuleDisabled: aws.Bool(true),
Topic: aws.String("Topic"),
}
resp, err := svc.ListTopicRules(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例14: ExampleIoT_GetPolicyVersion
func ExampleIoT_GetPolicyVersion() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.GetPolicyVersionInput{
PolicyName: aws.String("PolicyName"), // Required
PolicyVersionId: aws.String("PolicyVersionId"), // Required
}
resp, err := svc.GetPolicyVersion(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}
示例15: ExampleIoT_DeleteThing
func ExampleIoT_DeleteThing() {
sess, err := session.NewSession()
if err != nil {
fmt.Println("failed to create session,", err)
return
}
svc := iot.New(sess)
params := &iot.DeleteThingInput{
ThingName: aws.String("ThingName"), // Required
ExpectedVersion: aws.Int64(1),
}
resp, err := svc.DeleteThing(params)
if err != nil {
// Print the error, cast err to awserr.Error to get the Code and
// Message from an error.
fmt.Println(err.Error())
return
}
// Pretty-print the response data.
fmt.Println(resp)
}