id
int32 0
167k
| repo
stringlengths 5
54
| path
stringlengths 4
155
| func_name
stringlengths 1
118
| original_string
stringlengths 52
85.5k
| language
stringclasses 1
value | code
stringlengths 52
85.5k
| code_tokens
sequencelengths 21
1.41k
| docstring
stringlengths 6
2.61k
| docstring_tokens
sequencelengths 3
215
| sha
stringlengths 40
40
| url
stringlengths 85
252
|
---|---|---|---|---|---|---|---|---|---|---|---|
300 | aws/aws-sdk-go | service/appmesh/api.go | SetVirtualServices | func (s *ListVirtualServicesOutput) SetVirtualServices(v []*VirtualServiceRef) *ListVirtualServicesOutput {
s.VirtualServices = v
return s
} | go | func (s *ListVirtualServicesOutput) SetVirtualServices(v []*VirtualServiceRef) *ListVirtualServicesOutput {
s.VirtualServices = v
return s
} | [
"func",
"(",
"s",
"*",
"ListVirtualServicesOutput",
")",
"SetVirtualServices",
"(",
"v",
"[",
"]",
"*",
"VirtualServiceRef",
")",
"*",
"ListVirtualServicesOutput",
"{",
"s",
".",
"VirtualServices",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetVirtualServices sets the VirtualServices field's value. | [
"SetVirtualServices",
"sets",
"the",
"VirtualServices",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appmesh/api.go#L5862-L5865 |
301 | aws/aws-sdk-go | service/appmesh/api.go | SetEgressFilter | func (s *MeshSpec) SetEgressFilter(v *EgressFilter) *MeshSpec {
s.EgressFilter = v
return s
} | go | func (s *MeshSpec) SetEgressFilter(v *EgressFilter) *MeshSpec {
s.EgressFilter = v
return s
} | [
"func",
"(",
"s",
"*",
"MeshSpec",
")",
"SetEgressFilter",
"(",
"v",
"*",
"EgressFilter",
")",
"*",
"MeshSpec",
"{",
"s",
".",
"EgressFilter",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetEgressFilter sets the EgressFilter field's value. | [
"SetEgressFilter",
"sets",
"the",
"EgressFilter",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appmesh/api.go#L6094-L6097 |
302 | aws/aws-sdk-go | service/appmesh/api.go | SetHttpRoute | func (s *RouteSpec) SetHttpRoute(v *HttpRoute) *RouteSpec {
s.HttpRoute = v
return s
} | go | func (s *RouteSpec) SetHttpRoute(v *HttpRoute) *RouteSpec {
s.HttpRoute = v
return s
} | [
"func",
"(",
"s",
"*",
"RouteSpec",
")",
"SetHttpRoute",
"(",
"v",
"*",
"HttpRoute",
")",
"*",
"RouteSpec",
"{",
"s",
".",
"HttpRoute",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetHttpRoute sets the HttpRoute field's value. | [
"SetHttpRoute",
"sets",
"the",
"HttpRoute",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appmesh/api.go#L6432-L6435 |
303 | aws/aws-sdk-go | service/appmesh/api.go | SetTcpRoute | func (s *RouteSpec) SetTcpRoute(v *TcpRoute) *RouteSpec {
s.TcpRoute = v
return s
} | go | func (s *RouteSpec) SetTcpRoute(v *TcpRoute) *RouteSpec {
s.TcpRoute = v
return s
} | [
"func",
"(",
"s",
"*",
"RouteSpec",
")",
"SetTcpRoute",
"(",
"v",
"*",
"TcpRoute",
")",
"*",
"RouteSpec",
"{",
"s",
".",
"TcpRoute",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTcpRoute sets the TcpRoute field's value. | [
"SetTcpRoute",
"sets",
"the",
"TcpRoute",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appmesh/api.go#L6438-L6441 |
304 | aws/aws-sdk-go | service/appmesh/api.go | SetDns | func (s *ServiceDiscovery) SetDns(v *DnsServiceDiscovery) *ServiceDiscovery {
s.Dns = v
return s
} | go | func (s *ServiceDiscovery) SetDns(v *DnsServiceDiscovery) *ServiceDiscovery {
s.Dns = v
return s
} | [
"func",
"(",
"s",
"*",
"ServiceDiscovery",
")",
"SetDns",
"(",
"v",
"*",
"DnsServiceDiscovery",
")",
"*",
"ServiceDiscovery",
"{",
"s",
".",
"Dns",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDns sets the Dns field's value. | [
"SetDns",
"sets",
"the",
"Dns",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appmesh/api.go#L6503-L6506 |
305 | aws/aws-sdk-go | service/appmesh/api.go | SetBackends | func (s *VirtualNodeSpec) SetBackends(v []*Backend) *VirtualNodeSpec {
s.Backends = v
return s
} | go | func (s *VirtualNodeSpec) SetBackends(v []*Backend) *VirtualNodeSpec {
s.Backends = v
return s
} | [
"func",
"(",
"s",
"*",
"VirtualNodeSpec",
")",
"SetBackends",
"(",
"v",
"[",
"]",
"*",
"Backend",
")",
"*",
"VirtualNodeSpec",
"{",
"s",
".",
"Backends",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetBackends sets the Backends field's value. | [
"SetBackends",
"sets",
"the",
"Backends",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appmesh/api.go#L7595-L7598 |
306 | aws/aws-sdk-go | service/appmesh/api.go | SetServiceDiscovery | func (s *VirtualNodeSpec) SetServiceDiscovery(v *ServiceDiscovery) *VirtualNodeSpec {
s.ServiceDiscovery = v
return s
} | go | func (s *VirtualNodeSpec) SetServiceDiscovery(v *ServiceDiscovery) *VirtualNodeSpec {
s.ServiceDiscovery = v
return s
} | [
"func",
"(",
"s",
"*",
"VirtualNodeSpec",
")",
"SetServiceDiscovery",
"(",
"v",
"*",
"ServiceDiscovery",
")",
"*",
"VirtualNodeSpec",
"{",
"s",
".",
"ServiceDiscovery",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetServiceDiscovery sets the ServiceDiscovery field's value. | [
"SetServiceDiscovery",
"sets",
"the",
"ServiceDiscovery",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/appmesh/api.go#L7613-L7616 |
307 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetArrayBaseColumnType | func (s *ColumnMetadata) SetArrayBaseColumnType(v int64) *ColumnMetadata {
s.ArrayBaseColumnType = &v
return s
} | go | func (s *ColumnMetadata) SetArrayBaseColumnType(v int64) *ColumnMetadata {
s.ArrayBaseColumnType = &v
return s
} | [
"func",
"(",
"s",
"*",
"ColumnMetadata",
")",
"SetArrayBaseColumnType",
"(",
"v",
"int64",
")",
"*",
"ColumnMetadata",
"{",
"s",
".",
"ArrayBaseColumnType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetArrayBaseColumnType sets the ArrayBaseColumnType field's value. | [
"SetArrayBaseColumnType",
"sets",
"the",
"ArrayBaseColumnType",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L165-L168 |
308 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetIsAutoIncrement | func (s *ColumnMetadata) SetIsAutoIncrement(v bool) *ColumnMetadata {
s.IsAutoIncrement = &v
return s
} | go | func (s *ColumnMetadata) SetIsAutoIncrement(v bool) *ColumnMetadata {
s.IsAutoIncrement = &v
return s
} | [
"func",
"(",
"s",
"*",
"ColumnMetadata",
")",
"SetIsAutoIncrement",
"(",
"v",
"bool",
")",
"*",
"ColumnMetadata",
"{",
"s",
".",
"IsAutoIncrement",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIsAutoIncrement sets the IsAutoIncrement field's value. | [
"SetIsAutoIncrement",
"sets",
"the",
"IsAutoIncrement",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L171-L174 |
309 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetIsCaseSensitive | func (s *ColumnMetadata) SetIsCaseSensitive(v bool) *ColumnMetadata {
s.IsCaseSensitive = &v
return s
} | go | func (s *ColumnMetadata) SetIsCaseSensitive(v bool) *ColumnMetadata {
s.IsCaseSensitive = &v
return s
} | [
"func",
"(",
"s",
"*",
"ColumnMetadata",
")",
"SetIsCaseSensitive",
"(",
"v",
"bool",
")",
"*",
"ColumnMetadata",
"{",
"s",
".",
"IsCaseSensitive",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIsCaseSensitive sets the IsCaseSensitive field's value. | [
"SetIsCaseSensitive",
"sets",
"the",
"IsCaseSensitive",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L177-L180 |
310 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetIsCurrency | func (s *ColumnMetadata) SetIsCurrency(v bool) *ColumnMetadata {
s.IsCurrency = &v
return s
} | go | func (s *ColumnMetadata) SetIsCurrency(v bool) *ColumnMetadata {
s.IsCurrency = &v
return s
} | [
"func",
"(",
"s",
"*",
"ColumnMetadata",
")",
"SetIsCurrency",
"(",
"v",
"bool",
")",
"*",
"ColumnMetadata",
"{",
"s",
".",
"IsCurrency",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIsCurrency sets the IsCurrency field's value. | [
"SetIsCurrency",
"sets",
"the",
"IsCurrency",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L183-L186 |
311 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetIsSigned | func (s *ColumnMetadata) SetIsSigned(v bool) *ColumnMetadata {
s.IsSigned = &v
return s
} | go | func (s *ColumnMetadata) SetIsSigned(v bool) *ColumnMetadata {
s.IsSigned = &v
return s
} | [
"func",
"(",
"s",
"*",
"ColumnMetadata",
")",
"SetIsSigned",
"(",
"v",
"bool",
")",
"*",
"ColumnMetadata",
"{",
"s",
".",
"IsSigned",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIsSigned sets the IsSigned field's value. | [
"SetIsSigned",
"sets",
"the",
"IsSigned",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L189-L192 |
312 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetDbClusterOrInstanceArn | func (s *ExecuteSqlInput) SetDbClusterOrInstanceArn(v string) *ExecuteSqlInput {
s.DbClusterOrInstanceArn = &v
return s
} | go | func (s *ExecuteSqlInput) SetDbClusterOrInstanceArn(v string) *ExecuteSqlInput {
s.DbClusterOrInstanceArn = &v
return s
} | [
"func",
"(",
"s",
"*",
"ExecuteSqlInput",
")",
"SetDbClusterOrInstanceArn",
"(",
"v",
"string",
")",
"*",
"ExecuteSqlInput",
"{",
"s",
".",
"DbClusterOrInstanceArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDbClusterOrInstanceArn sets the DbClusterOrInstanceArn field's value. | [
"SetDbClusterOrInstanceArn",
"sets",
"the",
"DbClusterOrInstanceArn",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L316-L319 |
313 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetSqlStatements | func (s *ExecuteSqlInput) SetSqlStatements(v string) *ExecuteSqlInput {
s.SqlStatements = &v
return s
} | go | func (s *ExecuteSqlInput) SetSqlStatements(v string) *ExecuteSqlInput {
s.SqlStatements = &v
return s
} | [
"func",
"(",
"s",
"*",
"ExecuteSqlInput",
")",
"SetSqlStatements",
"(",
"v",
"string",
")",
"*",
"ExecuteSqlInput",
"{",
"s",
".",
"SqlStatements",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSqlStatements sets the SqlStatements field's value. | [
"SetSqlStatements",
"sets",
"the",
"SqlStatements",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L328-L331 |
314 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetSqlStatementResults | func (s *ExecuteSqlOutput) SetSqlStatementResults(v []*SqlStatementResult) *ExecuteSqlOutput {
s.SqlStatementResults = v
return s
} | go | func (s *ExecuteSqlOutput) SetSqlStatementResults(v []*SqlStatementResult) *ExecuteSqlOutput {
s.SqlStatementResults = v
return s
} | [
"func",
"(",
"s",
"*",
"ExecuteSqlOutput",
")",
"SetSqlStatementResults",
"(",
"v",
"[",
"]",
"*",
"SqlStatementResult",
")",
"*",
"ExecuteSqlOutput",
"{",
"s",
".",
"SqlStatementResults",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSqlStatementResults sets the SqlStatementResults field's value. | [
"SetSqlStatementResults",
"sets",
"the",
"SqlStatementResults",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L354-L357 |
315 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetColumnCount | func (s *ResultSetMetadata) SetColumnCount(v int64) *ResultSetMetadata {
s.ColumnCount = &v
return s
} | go | func (s *ResultSetMetadata) SetColumnCount(v int64) *ResultSetMetadata {
s.ColumnCount = &v
return s
} | [
"func",
"(",
"s",
"*",
"ResultSetMetadata",
")",
"SetColumnCount",
"(",
"v",
"int64",
")",
"*",
"ResultSetMetadata",
"{",
"s",
".",
"ColumnCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetColumnCount sets the ColumnCount field's value. | [
"SetColumnCount",
"sets",
"the",
"ColumnCount",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L438-L441 |
316 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetColumnMetadata | func (s *ResultSetMetadata) SetColumnMetadata(v []*ColumnMetadata) *ResultSetMetadata {
s.ColumnMetadata = v
return s
} | go | func (s *ResultSetMetadata) SetColumnMetadata(v []*ColumnMetadata) *ResultSetMetadata {
s.ColumnMetadata = v
return s
} | [
"func",
"(",
"s",
"*",
"ResultSetMetadata",
")",
"SetColumnMetadata",
"(",
"v",
"[",
"]",
"*",
"ColumnMetadata",
")",
"*",
"ResultSetMetadata",
"{",
"s",
".",
"ColumnMetadata",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetColumnMetadata sets the ColumnMetadata field's value. | [
"SetColumnMetadata",
"sets",
"the",
"ColumnMetadata",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L444-L447 |
317 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetNumberOfRecordsUpdated | func (s *SqlStatementResult) SetNumberOfRecordsUpdated(v int64) *SqlStatementResult {
s.NumberOfRecordsUpdated = &v
return s
} | go | func (s *SqlStatementResult) SetNumberOfRecordsUpdated(v int64) *SqlStatementResult {
s.NumberOfRecordsUpdated = &v
return s
} | [
"func",
"(",
"s",
"*",
"SqlStatementResult",
")",
"SetNumberOfRecordsUpdated",
"(",
"v",
"int64",
")",
"*",
"SqlStatementResult",
"{",
"s",
".",
"NumberOfRecordsUpdated",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetNumberOfRecordsUpdated sets the NumberOfRecordsUpdated field's value. | [
"SetNumberOfRecordsUpdated",
"sets",
"the",
"NumberOfRecordsUpdated",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L471-L474 |
318 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetResultFrame | func (s *SqlStatementResult) SetResultFrame(v *ResultFrame) *SqlStatementResult {
s.ResultFrame = v
return s
} | go | func (s *SqlStatementResult) SetResultFrame(v *ResultFrame) *SqlStatementResult {
s.ResultFrame = v
return s
} | [
"func",
"(",
"s",
"*",
"SqlStatementResult",
")",
"SetResultFrame",
"(",
"v",
"*",
"ResultFrame",
")",
"*",
"SqlStatementResult",
"{",
"s",
".",
"ResultFrame",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetResultFrame sets the ResultFrame field's value. | [
"SetResultFrame",
"sets",
"the",
"ResultFrame",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L477-L480 |
319 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetArrayValues | func (s *Value) SetArrayValues(v []*Value) *Value {
s.ArrayValues = v
return s
} | go | func (s *Value) SetArrayValues(v []*Value) *Value {
s.ArrayValues = v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetArrayValues",
"(",
"v",
"[",
"]",
"*",
"Value",
")",
"*",
"Value",
"{",
"s",
".",
"ArrayValues",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetArrayValues sets the ArrayValues field's value. | [
"SetArrayValues",
"sets",
"the",
"ArrayValues",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L554-L557 |
320 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetBigIntValue | func (s *Value) SetBigIntValue(v int64) *Value {
s.BigIntValue = &v
return s
} | go | func (s *Value) SetBigIntValue(v int64) *Value {
s.BigIntValue = &v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetBigIntValue",
"(",
"v",
"int64",
")",
"*",
"Value",
"{",
"s",
".",
"BigIntValue",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetBigIntValue sets the BigIntValue field's value. | [
"SetBigIntValue",
"sets",
"the",
"BigIntValue",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L560-L563 |
321 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetBitValue | func (s *Value) SetBitValue(v bool) *Value {
s.BitValue = &v
return s
} | go | func (s *Value) SetBitValue(v bool) *Value {
s.BitValue = &v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetBitValue",
"(",
"v",
"bool",
")",
"*",
"Value",
"{",
"s",
".",
"BitValue",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetBitValue sets the BitValue field's value. | [
"SetBitValue",
"sets",
"the",
"BitValue",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L566-L569 |
322 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetBlobValue | func (s *Value) SetBlobValue(v []byte) *Value {
s.BlobValue = v
return s
} | go | func (s *Value) SetBlobValue(v []byte) *Value {
s.BlobValue = v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetBlobValue",
"(",
"v",
"[",
"]",
"byte",
")",
"*",
"Value",
"{",
"s",
".",
"BlobValue",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetBlobValue sets the BlobValue field's value. | [
"SetBlobValue",
"sets",
"the",
"BlobValue",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L572-L575 |
323 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetIntValue | func (s *Value) SetIntValue(v int64) *Value {
s.IntValue = &v
return s
} | go | func (s *Value) SetIntValue(v int64) *Value {
s.IntValue = &v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetIntValue",
"(",
"v",
"int64",
")",
"*",
"Value",
"{",
"s",
".",
"IntValue",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIntValue sets the IntValue field's value. | [
"SetIntValue",
"sets",
"the",
"IntValue",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L584-L587 |
324 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetIsNull | func (s *Value) SetIsNull(v bool) *Value {
s.IsNull = &v
return s
} | go | func (s *Value) SetIsNull(v bool) *Value {
s.IsNull = &v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetIsNull",
"(",
"v",
"bool",
")",
"*",
"Value",
"{",
"s",
".",
"IsNull",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIsNull sets the IsNull field's value. | [
"SetIsNull",
"sets",
"the",
"IsNull",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L590-L593 |
325 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetRealValue | func (s *Value) SetRealValue(v float64) *Value {
s.RealValue = &v
return s
} | go | func (s *Value) SetRealValue(v float64) *Value {
s.RealValue = &v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetRealValue",
"(",
"v",
"float64",
")",
"*",
"Value",
"{",
"s",
".",
"RealValue",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetRealValue sets the RealValue field's value. | [
"SetRealValue",
"sets",
"the",
"RealValue",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L596-L599 |
326 | aws/aws-sdk-go | service/rdsdataservice/api.go | SetStructValue | func (s *Value) SetStructValue(v *StructValue) *Value {
s.StructValue = v
return s
} | go | func (s *Value) SetStructValue(v *StructValue) *Value {
s.StructValue = v
return s
} | [
"func",
"(",
"s",
"*",
"Value",
")",
"SetStructValue",
"(",
"v",
"*",
"StructValue",
")",
"*",
"Value",
"{",
"s",
".",
"StructValue",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetStructValue sets the StructValue field's value. | [
"SetStructValue",
"sets",
"the",
"StructValue",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/rdsdataservice/api.go#L608-L611 |
327 | aws/aws-sdk-go | service/kms/api.go | SetConnectionErrorCode | func (s *CustomKeyStoresListEntry) SetConnectionErrorCode(v string) *CustomKeyStoresListEntry {
s.ConnectionErrorCode = &v
return s
} | go | func (s *CustomKeyStoresListEntry) SetConnectionErrorCode(v string) *CustomKeyStoresListEntry {
s.ConnectionErrorCode = &v
return s
} | [
"func",
"(",
"s",
"*",
"CustomKeyStoresListEntry",
")",
"SetConnectionErrorCode",
"(",
"v",
"string",
")",
"*",
"CustomKeyStoresListEntry",
"{",
"s",
".",
"ConnectionErrorCode",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetConnectionErrorCode sets the ConnectionErrorCode field's value. | [
"SetConnectionErrorCode",
"sets",
"the",
"ConnectionErrorCode",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L6196-L6199 |
328 | aws/aws-sdk-go | service/kms/api.go | SetCustomKeyStores | func (s *DescribeCustomKeyStoresOutput) SetCustomKeyStores(v []*CustomKeyStoresListEntry) *DescribeCustomKeyStoresOutput {
s.CustomKeyStores = v
return s
} | go | func (s *DescribeCustomKeyStoresOutput) SetCustomKeyStores(v []*CustomKeyStoresListEntry) *DescribeCustomKeyStoresOutput {
s.CustomKeyStores = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeCustomKeyStoresOutput",
")",
"SetCustomKeyStores",
"(",
"v",
"[",
"]",
"*",
"CustomKeyStoresListEntry",
")",
"*",
"DescribeCustomKeyStoresOutput",
"{",
"s",
".",
"CustomKeyStores",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetCustomKeyStores sets the CustomKeyStores field's value. | [
"SetCustomKeyStores",
"sets",
"the",
"CustomKeyStores",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L6627-L6630 |
329 | aws/aws-sdk-go | service/kms/api.go | SetKeyRotationEnabled | func (s *GetKeyRotationStatusOutput) SetKeyRotationEnabled(v bool) *GetKeyRotationStatusOutput {
s.KeyRotationEnabled = &v
return s
} | go | func (s *GetKeyRotationStatusOutput) SetKeyRotationEnabled(v bool) *GetKeyRotationStatusOutput {
s.KeyRotationEnabled = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetKeyRotationStatusOutput",
")",
"SetKeyRotationEnabled",
"(",
"v",
"bool",
")",
"*",
"GetKeyRotationStatusOutput",
"{",
"s",
".",
"KeyRotationEnabled",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetKeyRotationEnabled sets the KeyRotationEnabled field's value. | [
"SetKeyRotationEnabled",
"sets",
"the",
"KeyRotationEnabled",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L7728-L7731 |
330 | aws/aws-sdk-go | service/kms/api.go | SetWrappingAlgorithm | func (s *GetParametersForImportInput) SetWrappingAlgorithm(v string) *GetParametersForImportInput {
s.WrappingAlgorithm = &v
return s
} | go | func (s *GetParametersForImportInput) SetWrappingAlgorithm(v string) *GetParametersForImportInput {
s.WrappingAlgorithm = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetParametersForImportInput",
")",
"SetWrappingAlgorithm",
"(",
"v",
"string",
")",
"*",
"GetParametersForImportInput",
"{",
"s",
".",
"WrappingAlgorithm",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetWrappingAlgorithm sets the WrappingAlgorithm field's value. | [
"SetWrappingAlgorithm",
"sets",
"the",
"WrappingAlgorithm",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L7806-L7809 |
331 | aws/aws-sdk-go | service/kms/api.go | SetWrappingKeySpec | func (s *GetParametersForImportInput) SetWrappingKeySpec(v string) *GetParametersForImportInput {
s.WrappingKeySpec = &v
return s
} | go | func (s *GetParametersForImportInput) SetWrappingKeySpec(v string) *GetParametersForImportInput {
s.WrappingKeySpec = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetParametersForImportInput",
")",
"SetWrappingKeySpec",
"(",
"v",
"string",
")",
"*",
"GetParametersForImportInput",
"{",
"s",
".",
"WrappingKeySpec",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetWrappingKeySpec sets the WrappingKeySpec field's value. | [
"SetWrappingKeySpec",
"sets",
"the",
"WrappingKeySpec",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L7812-L7815 |
332 | aws/aws-sdk-go | service/kms/api.go | SetParametersValidTo | func (s *GetParametersForImportOutput) SetParametersValidTo(v time.Time) *GetParametersForImportOutput {
s.ParametersValidTo = &v
return s
} | go | func (s *GetParametersForImportOutput) SetParametersValidTo(v time.Time) *GetParametersForImportOutput {
s.ParametersValidTo = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetParametersForImportOutput",
")",
"SetParametersValidTo",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"GetParametersForImportOutput",
"{",
"s",
".",
"ParametersValidTo",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetParametersValidTo sets the ParametersValidTo field's value. | [
"SetParametersValidTo",
"sets",
"the",
"ParametersValidTo",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L7864-L7867 |
333 | aws/aws-sdk-go | service/kms/api.go | SetEncryptionContextEquals | func (s *GrantConstraints) SetEncryptionContextEquals(v map[string]*string) *GrantConstraints {
s.EncryptionContextEquals = v
return s
} | go | func (s *GrantConstraints) SetEncryptionContextEquals(v map[string]*string) *GrantConstraints {
s.EncryptionContextEquals = v
return s
} | [
"func",
"(",
"s",
"*",
"GrantConstraints",
")",
"SetEncryptionContextEquals",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"GrantConstraints",
"{",
"s",
".",
"EncryptionContextEquals",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetEncryptionContextEquals sets the EncryptionContextEquals field's value. | [
"SetEncryptionContextEquals",
"sets",
"the",
"EncryptionContextEquals",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L7934-L7937 |
334 | aws/aws-sdk-go | service/kms/api.go | SetEncryptionContextSubset | func (s *GrantConstraints) SetEncryptionContextSubset(v map[string]*string) *GrantConstraints {
s.EncryptionContextSubset = v
return s
} | go | func (s *GrantConstraints) SetEncryptionContextSubset(v map[string]*string) *GrantConstraints {
s.EncryptionContextSubset = v
return s
} | [
"func",
"(",
"s",
"*",
"GrantConstraints",
")",
"SetEncryptionContextSubset",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"GrantConstraints",
"{",
"s",
".",
"EncryptionContextSubset",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetEncryptionContextSubset sets the EncryptionContextSubset field's value. | [
"SetEncryptionContextSubset",
"sets",
"the",
"EncryptionContextSubset",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L7940-L7943 |
335 | aws/aws-sdk-go | service/kms/api.go | SetIssuingAccount | func (s *GrantListEntry) SetIssuingAccount(v string) *GrantListEntry {
s.IssuingAccount = &v
return s
} | go | func (s *GrantListEntry) SetIssuingAccount(v string) *GrantListEntry {
s.IssuingAccount = &v
return s
} | [
"func",
"(",
"s",
"*",
"GrantListEntry",
")",
"SetIssuingAccount",
"(",
"v",
"string",
")",
"*",
"GrantListEntry",
"{",
"s",
".",
"IssuingAccount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIssuingAccount sets the IssuingAccount field's value. | [
"SetIssuingAccount",
"sets",
"the",
"IssuingAccount",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L8015-L8018 |
336 | aws/aws-sdk-go | service/kms/api.go | SetEncryptedKeyMaterial | func (s *ImportKeyMaterialInput) SetEncryptedKeyMaterial(v []byte) *ImportKeyMaterialInput {
s.EncryptedKeyMaterial = v
return s
} | go | func (s *ImportKeyMaterialInput) SetEncryptedKeyMaterial(v []byte) *ImportKeyMaterialInput {
s.EncryptedKeyMaterial = v
return s
} | [
"func",
"(",
"s",
"*",
"ImportKeyMaterialInput",
")",
"SetEncryptedKeyMaterial",
"(",
"v",
"[",
"]",
"byte",
")",
"*",
"ImportKeyMaterialInput",
"{",
"s",
".",
"EncryptedKeyMaterial",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetEncryptedKeyMaterial sets the EncryptedKeyMaterial field's value. | [
"SetEncryptedKeyMaterial",
"sets",
"the",
"EncryptedKeyMaterial",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L8132-L8135 |
337 | aws/aws-sdk-go | service/kms/api.go | SetKeyArn | func (s *KeyListEntry) SetKeyArn(v string) *KeyListEntry {
s.KeyArn = &v
return s
} | go | func (s *KeyListEntry) SetKeyArn(v string) *KeyListEntry {
s.KeyArn = &v
return s
} | [
"func",
"(",
"s",
"*",
"KeyListEntry",
")",
"SetKeyArn",
"(",
"v",
"string",
")",
"*",
"KeyListEntry",
"{",
"s",
".",
"KeyArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetKeyArn sets the KeyArn field's value. | [
"SetKeyArn",
"sets",
"the",
"KeyArn",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L8197-L8200 |
338 | aws/aws-sdk-go | service/kms/api.go | SetKeyManager | func (s *KeyMetadata) SetKeyManager(v string) *KeyMetadata {
s.KeyManager = &v
return s
} | go | func (s *KeyMetadata) SetKeyManager(v string) *KeyMetadata {
s.KeyManager = &v
return s
} | [
"func",
"(",
"s",
"*",
"KeyMetadata",
")",
"SetKeyManager",
"(",
"v",
"string",
")",
"*",
"KeyMetadata",
"{",
"s",
".",
"KeyManager",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetKeyManager sets the KeyManager field's value. | [
"SetKeyManager",
"sets",
"the",
"KeyManager",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L8361-L8364 |
339 | aws/aws-sdk-go | service/kms/api.go | SetKeyState | func (s *KeyMetadata) SetKeyState(v string) *KeyMetadata {
s.KeyState = &v
return s
} | go | func (s *KeyMetadata) SetKeyState(v string) *KeyMetadata {
s.KeyState = &v
return s
} | [
"func",
"(",
"s",
"*",
"KeyMetadata",
")",
"SetKeyState",
"(",
"v",
"string",
")",
"*",
"KeyMetadata",
"{",
"s",
".",
"KeyState",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetKeyState sets the KeyState field's value. | [
"SetKeyState",
"sets",
"the",
"KeyState",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L8367-L8370 |
340 | aws/aws-sdk-go | service/kms/api.go | SetDestinationEncryptionContext | func (s *ReEncryptInput) SetDestinationEncryptionContext(v map[string]*string) *ReEncryptInput {
s.DestinationEncryptionContext = v
return s
} | go | func (s *ReEncryptInput) SetDestinationEncryptionContext(v map[string]*string) *ReEncryptInput {
s.DestinationEncryptionContext = v
return s
} | [
"func",
"(",
"s",
"*",
"ReEncryptInput",
")",
"SetDestinationEncryptionContext",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"ReEncryptInput",
"{",
"s",
".",
"DestinationEncryptionContext",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDestinationEncryptionContext sets the DestinationEncryptionContext field's value. | [
"SetDestinationEncryptionContext",
"sets",
"the",
"DestinationEncryptionContext",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L9299-L9302 |
341 | aws/aws-sdk-go | service/kms/api.go | SetDestinationKeyId | func (s *ReEncryptInput) SetDestinationKeyId(v string) *ReEncryptInput {
s.DestinationKeyId = &v
return s
} | go | func (s *ReEncryptInput) SetDestinationKeyId(v string) *ReEncryptInput {
s.DestinationKeyId = &v
return s
} | [
"func",
"(",
"s",
"*",
"ReEncryptInput",
")",
"SetDestinationKeyId",
"(",
"v",
"string",
")",
"*",
"ReEncryptInput",
"{",
"s",
".",
"DestinationKeyId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDestinationKeyId sets the DestinationKeyId field's value. | [
"SetDestinationKeyId",
"sets",
"the",
"DestinationKeyId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L9305-L9308 |
342 | aws/aws-sdk-go | service/kms/api.go | SetSourceEncryptionContext | func (s *ReEncryptInput) SetSourceEncryptionContext(v map[string]*string) *ReEncryptInput {
s.SourceEncryptionContext = v
return s
} | go | func (s *ReEncryptInput) SetSourceEncryptionContext(v map[string]*string) *ReEncryptInput {
s.SourceEncryptionContext = v
return s
} | [
"func",
"(",
"s",
"*",
"ReEncryptInput",
")",
"SetSourceEncryptionContext",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"ReEncryptInput",
"{",
"s",
".",
"SourceEncryptionContext",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSourceEncryptionContext sets the SourceEncryptionContext field's value. | [
"SetSourceEncryptionContext",
"sets",
"the",
"SourceEncryptionContext",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L9317-L9320 |
343 | aws/aws-sdk-go | service/kms/api.go | SetSourceKeyId | func (s *ReEncryptOutput) SetSourceKeyId(v string) *ReEncryptOutput {
s.SourceKeyId = &v
return s
} | go | func (s *ReEncryptOutput) SetSourceKeyId(v string) *ReEncryptOutput {
s.SourceKeyId = &v
return s
} | [
"func",
"(",
"s",
"*",
"ReEncryptOutput",
")",
"SetSourceKeyId",
"(",
"v",
"string",
")",
"*",
"ReEncryptOutput",
"{",
"s",
".",
"SourceKeyId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSourceKeyId sets the SourceKeyId field's value. | [
"SetSourceKeyId",
"sets",
"the",
"SourceKeyId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L9361-L9364 |
344 | aws/aws-sdk-go | service/kms/api.go | SetPendingWindowInDays | func (s *ScheduleKeyDeletionInput) SetPendingWindowInDays(v int64) *ScheduleKeyDeletionInput {
s.PendingWindowInDays = &v
return s
} | go | func (s *ScheduleKeyDeletionInput) SetPendingWindowInDays(v int64) *ScheduleKeyDeletionInput {
s.PendingWindowInDays = &v
return s
} | [
"func",
"(",
"s",
"*",
"ScheduleKeyDeletionInput",
")",
"SetPendingWindowInDays",
"(",
"v",
"int64",
")",
"*",
"ScheduleKeyDeletionInput",
"{",
"s",
".",
"PendingWindowInDays",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetPendingWindowInDays sets the PendingWindowInDays field's value. | [
"SetPendingWindowInDays",
"sets",
"the",
"PendingWindowInDays",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L9590-L9593 |
345 | aws/aws-sdk-go | service/kms/api.go | SetNewCustomKeyStoreName | func (s *UpdateCustomKeyStoreInput) SetNewCustomKeyStoreName(v string) *UpdateCustomKeyStoreInput {
s.NewCustomKeyStoreName = &v
return s
} | go | func (s *UpdateCustomKeyStoreInput) SetNewCustomKeyStoreName(v string) *UpdateCustomKeyStoreInput {
s.NewCustomKeyStoreName = &v
return s
} | [
"func",
"(",
"s",
"*",
"UpdateCustomKeyStoreInput",
")",
"SetNewCustomKeyStoreName",
"(",
"v",
"string",
")",
"*",
"UpdateCustomKeyStoreInput",
"{",
"s",
".",
"NewCustomKeyStoreName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetNewCustomKeyStoreName sets the NewCustomKeyStoreName field's value. | [
"SetNewCustomKeyStoreName",
"sets",
"the",
"NewCustomKeyStoreName",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/kms/api.go#L10032-L10035 |
346 | aws/aws-sdk-go | service/sqs/api.go | SetAWSAccountIds | func (s *AddPermissionInput) SetAWSAccountIds(v []*string) *AddPermissionInput {
s.AWSAccountIds = v
return s
} | go | func (s *AddPermissionInput) SetAWSAccountIds(v []*string) *AddPermissionInput {
s.AWSAccountIds = v
return s
} | [
"func",
"(",
"s",
"*",
"AddPermissionInput",
")",
"SetAWSAccountIds",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"AddPermissionInput",
"{",
"s",
".",
"AWSAccountIds",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAWSAccountIds sets the AWSAccountIds field's value. | [
"SetAWSAccountIds",
"sets",
"the",
"AWSAccountIds",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L2088-L2091 |
347 | aws/aws-sdk-go | service/sqs/api.go | SetSenderFault | func (s *BatchResultErrorEntry) SetSenderFault(v bool) *BatchResultErrorEntry {
s.SenderFault = &v
return s
} | go | func (s *BatchResultErrorEntry) SetSenderFault(v bool) *BatchResultErrorEntry {
s.SenderFault = &v
return s
} | [
"func",
"(",
"s",
"*",
"BatchResultErrorEntry",
")",
"SetSenderFault",
"(",
"v",
"bool",
")",
"*",
"BatchResultErrorEntry",
"{",
"s",
".",
"SenderFault",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSenderFault sets the SenderFault field's value. | [
"SetSenderFault",
"sets",
"the",
"SenderFault",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L2178-L2181 |
348 | aws/aws-sdk-go | service/sqs/api.go | SetQueueOwnerAWSAccountId | func (s *GetQueueUrlInput) SetQueueOwnerAWSAccountId(v string) *GetQueueUrlInput {
s.QueueOwnerAWSAccountId = &v
return s
} | go | func (s *GetQueueUrlInput) SetQueueOwnerAWSAccountId(v string) *GetQueueUrlInput {
s.QueueOwnerAWSAccountId = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetQueueUrlInput",
")",
"SetQueueOwnerAWSAccountId",
"(",
"v",
"string",
")",
"*",
"GetQueueUrlInput",
"{",
"s",
".",
"QueueOwnerAWSAccountId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetQueueOwnerAWSAccountId sets the QueueOwnerAWSAccountId field's value. | [
"SetQueueOwnerAWSAccountId",
"sets",
"the",
"QueueOwnerAWSAccountId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3171-L3174 |
349 | aws/aws-sdk-go | service/sqs/api.go | SetQueueNamePrefix | func (s *ListQueuesInput) SetQueueNamePrefix(v string) *ListQueuesInput {
s.QueueNamePrefix = &v
return s
} | go | func (s *ListQueuesInput) SetQueueNamePrefix(v string) *ListQueuesInput {
s.QueueNamePrefix = &v
return s
} | [
"func",
"(",
"s",
"*",
"ListQueuesInput",
")",
"SetQueueNamePrefix",
"(",
"v",
"string",
")",
"*",
"ListQueuesInput",
"{",
"s",
".",
"QueueNamePrefix",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetQueueNamePrefix sets the QueueNamePrefix field's value. | [
"SetQueueNamePrefix",
"sets",
"the",
"QueueNamePrefix",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3350-L3353 |
350 | aws/aws-sdk-go | service/sqs/api.go | SetMD5OfBody | func (s *Message) SetMD5OfBody(v string) *Message {
s.MD5OfBody = &v
return s
} | go | func (s *Message) SetMD5OfBody(v string) *Message {
s.MD5OfBody = &v
return s
} | [
"func",
"(",
"s",
"*",
"Message",
")",
"SetMD5OfBody",
"(",
"v",
"string",
")",
"*",
"Message",
"{",
"s",
".",
"MD5OfBody",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetMD5OfBody sets the MD5OfBody field's value. | [
"SetMD5OfBody",
"sets",
"the",
"MD5OfBody",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3455-L3458 |
351 | aws/aws-sdk-go | service/sqs/api.go | SetBinaryListValues | func (s *MessageAttributeValue) SetBinaryListValues(v [][]byte) *MessageAttributeValue {
s.BinaryListValues = v
return s
} | go | func (s *MessageAttributeValue) SetBinaryListValues(v [][]byte) *MessageAttributeValue {
s.BinaryListValues = v
return s
} | [
"func",
"(",
"s",
"*",
"MessageAttributeValue",
")",
"SetBinaryListValues",
"(",
"v",
"[",
"]",
"[",
"]",
"byte",
")",
"*",
"MessageAttributeValue",
"{",
"s",
".",
"BinaryListValues",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetBinaryListValues sets the BinaryListValues field's value. | [
"SetBinaryListValues",
"sets",
"the",
"BinaryListValues",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3545-L3548 |
352 | aws/aws-sdk-go | service/sqs/api.go | SetStringListValues | func (s *MessageAttributeValue) SetStringListValues(v []*string) *MessageAttributeValue {
s.StringListValues = v
return s
} | go | func (s *MessageAttributeValue) SetStringListValues(v []*string) *MessageAttributeValue {
s.StringListValues = v
return s
} | [
"func",
"(",
"s",
"*",
"MessageAttributeValue",
")",
"SetStringListValues",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"MessageAttributeValue",
"{",
"s",
".",
"StringListValues",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetStringListValues sets the StringListValues field's value. | [
"SetStringListValues",
"sets",
"the",
"StringListValues",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3563-L3566 |
353 | aws/aws-sdk-go | service/sqs/api.go | SetMaxNumberOfMessages | func (s *ReceiveMessageInput) SetMaxNumberOfMessages(v int64) *ReceiveMessageInput {
s.MaxNumberOfMessages = &v
return s
} | go | func (s *ReceiveMessageInput) SetMaxNumberOfMessages(v int64) *ReceiveMessageInput {
s.MaxNumberOfMessages = &v
return s
} | [
"func",
"(",
"s",
"*",
"ReceiveMessageInput",
")",
"SetMaxNumberOfMessages",
"(",
"v",
"int64",
")",
"*",
"ReceiveMessageInput",
"{",
"s",
".",
"MaxNumberOfMessages",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetMaxNumberOfMessages sets the MaxNumberOfMessages field's value. | [
"SetMaxNumberOfMessages",
"sets",
"the",
"MaxNumberOfMessages",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3792-L3795 |
354 | aws/aws-sdk-go | service/sqs/api.go | SetMessageAttributeNames | func (s *ReceiveMessageInput) SetMessageAttributeNames(v []*string) *ReceiveMessageInput {
s.MessageAttributeNames = v
return s
} | go | func (s *ReceiveMessageInput) SetMessageAttributeNames(v []*string) *ReceiveMessageInput {
s.MessageAttributeNames = v
return s
} | [
"func",
"(",
"s",
"*",
"ReceiveMessageInput",
")",
"SetMessageAttributeNames",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ReceiveMessageInput",
"{",
"s",
".",
"MessageAttributeNames",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetMessageAttributeNames sets the MessageAttributeNames field's value. | [
"SetMessageAttributeNames",
"sets",
"the",
"MessageAttributeNames",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3798-L3801 |
355 | aws/aws-sdk-go | service/sqs/api.go | SetReceiveRequestAttemptId | func (s *ReceiveMessageInput) SetReceiveRequestAttemptId(v string) *ReceiveMessageInput {
s.ReceiveRequestAttemptId = &v
return s
} | go | func (s *ReceiveMessageInput) SetReceiveRequestAttemptId(v string) *ReceiveMessageInput {
s.ReceiveRequestAttemptId = &v
return s
} | [
"func",
"(",
"s",
"*",
"ReceiveMessageInput",
")",
"SetReceiveRequestAttemptId",
"(",
"v",
"string",
")",
"*",
"ReceiveMessageInput",
"{",
"s",
".",
"ReceiveRequestAttemptId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetReceiveRequestAttemptId sets the ReceiveRequestAttemptId field's value. | [
"SetReceiveRequestAttemptId",
"sets",
"the",
"ReceiveRequestAttemptId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3810-L3813 |
356 | aws/aws-sdk-go | service/sqs/api.go | SetWaitTimeSeconds | func (s *ReceiveMessageInput) SetWaitTimeSeconds(v int64) *ReceiveMessageInput {
s.WaitTimeSeconds = &v
return s
} | go | func (s *ReceiveMessageInput) SetWaitTimeSeconds(v int64) *ReceiveMessageInput {
s.WaitTimeSeconds = &v
return s
} | [
"func",
"(",
"s",
"*",
"ReceiveMessageInput",
")",
"SetWaitTimeSeconds",
"(",
"v",
"int64",
")",
"*",
"ReceiveMessageInput",
"{",
"s",
".",
"WaitTimeSeconds",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetWaitTimeSeconds sets the WaitTimeSeconds field's value. | [
"SetWaitTimeSeconds",
"sets",
"the",
"WaitTimeSeconds",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sqs/api.go#L3822-L3825 |
357 | aws/aws-sdk-go | service/cloudwatch/waiters.go | WaitUntilAlarmExists | func (c *CloudWatch) WaitUntilAlarmExists(input *DescribeAlarmsInput) error {
return c.WaitUntilAlarmExistsWithContext(aws.BackgroundContext(), input)
} | go | func (c *CloudWatch) WaitUntilAlarmExists(input *DescribeAlarmsInput) error {
return c.WaitUntilAlarmExistsWithContext(aws.BackgroundContext(), input)
} | [
"func",
"(",
"c",
"*",
"CloudWatch",
")",
"WaitUntilAlarmExists",
"(",
"input",
"*",
"DescribeAlarmsInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilAlarmExistsWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] | // WaitUntilAlarmExists uses the CloudWatch API operation
// DescribeAlarms to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | [
"WaitUntilAlarmExists",
"uses",
"the",
"CloudWatch",
"API",
"operation",
"DescribeAlarms",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudwatch/waiters.go#L16-L18 |
358 | aws/aws-sdk-go | service/s3/body_hash.go | contentMD5 | func contentMD5(r *request.Request) {
h := md5.New()
if !aws.IsReaderSeekable(r.Body) {
if r.Config.Logger != nil {
r.Config.Logger.Log(fmt.Sprintf(
"Unable to compute Content-MD5 for unseekable body, S3.%s",
r.Operation.Name))
}
return
}
if _, err := copySeekableBody(h, r.Body); err != nil {
r.Error = awserr.New("ContentMD5", "failed to compute body MD5", err)
return
}
// encode the md5 checksum in base64 and set the request header.
v := base64.StdEncoding.EncodeToString(h.Sum(nil))
r.HTTPRequest.Header.Set(contentMD5Header, v)
} | go | func contentMD5(r *request.Request) {
h := md5.New()
if !aws.IsReaderSeekable(r.Body) {
if r.Config.Logger != nil {
r.Config.Logger.Log(fmt.Sprintf(
"Unable to compute Content-MD5 for unseekable body, S3.%s",
r.Operation.Name))
}
return
}
if _, err := copySeekableBody(h, r.Body); err != nil {
r.Error = awserr.New("ContentMD5", "failed to compute body MD5", err)
return
}
// encode the md5 checksum in base64 and set the request header.
v := base64.StdEncoding.EncodeToString(h.Sum(nil))
r.HTTPRequest.Header.Set(contentMD5Header, v)
} | [
"func",
"contentMD5",
"(",
"r",
"*",
"request",
".",
"Request",
")",
"{",
"h",
":=",
"md5",
".",
"New",
"(",
")",
"\n\n",
"if",
"!",
"aws",
".",
"IsReaderSeekable",
"(",
"r",
".",
"Body",
")",
"{",
"if",
"r",
".",
"Config",
".",
"Logger",
"!=",
"nil",
"{",
"r",
".",
"Config",
".",
"Logger",
".",
"Log",
"(",
"fmt",
".",
"Sprintf",
"(",
"\"",
"\"",
",",
"r",
".",
"Operation",
".",
"Name",
")",
")",
"\n",
"}",
"\n",
"return",
"\n",
"}",
"\n\n",
"if",
"_",
",",
"err",
":=",
"copySeekableBody",
"(",
"h",
",",
"r",
".",
"Body",
")",
";",
"err",
"!=",
"nil",
"{",
"r",
".",
"Error",
"=",
"awserr",
".",
"New",
"(",
"\"",
"\"",
",",
"\"",
"\"",
",",
"err",
")",
"\n",
"return",
"\n",
"}",
"\n\n",
"// encode the md5 checksum in base64 and set the request header.",
"v",
":=",
"base64",
".",
"StdEncoding",
".",
"EncodeToString",
"(",
"h",
".",
"Sum",
"(",
"nil",
")",
")",
"\n",
"r",
".",
"HTTPRequest",
".",
"Header",
".",
"Set",
"(",
"contentMD5Header",
",",
"v",
")",
"\n",
"}"
] | // contentMD5 computes and sets the HTTP Content-MD5 header for requests that
// require it. | [
"contentMD5",
"computes",
"and",
"sets",
"the",
"HTTP",
"Content",
"-",
"MD5",
"header",
"for",
"requests",
"that",
"require",
"it",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/s3/body_hash.go#L30-L50 |
359 | aws/aws-sdk-go | service/s3/body_hash.go | computeBodyHashes | func computeBodyHashes(r *request.Request) {
if aws.BoolValue(r.Config.S3DisableContentMD5Validation) {
return
}
if r.IsPresigned() {
return
}
if r.Error != nil || !aws.IsReaderSeekable(r.Body) {
return
}
var md5Hash, sha256Hash hash.Hash
hashers := make([]io.Writer, 0, 2)
// Determine upfront which hashes can be set without overriding user
// provide header data.
if v := r.HTTPRequest.Header.Get(contentMD5Header); len(v) == 0 {
md5Hash = md5.New()
hashers = append(hashers, md5Hash)
}
if v := r.HTTPRequest.Header.Get(contentSha256Header); len(v) == 0 {
sha256Hash = sha256.New()
hashers = append(hashers, sha256Hash)
}
// Create the destination writer based on the hashes that are not already
// provided by the user.
var dst io.Writer
switch len(hashers) {
case 0:
return
case 1:
dst = hashers[0]
default:
dst = io.MultiWriter(hashers...)
}
if _, err := copySeekableBody(dst, r.Body); err != nil {
r.Error = awserr.New("BodyHashError", "failed to compute body hashes", err)
return
}
// For the hashes created, set the associated headers that the user did not
// already provide.
if md5Hash != nil {
sum := make([]byte, md5.Size)
encoded := make([]byte, md5Base64EncLen)
base64.StdEncoding.Encode(encoded, md5Hash.Sum(sum[0:0]))
r.HTTPRequest.Header[contentMD5Header] = []string{string(encoded)}
}
if sha256Hash != nil {
encoded := make([]byte, sha256HexEncLen)
sum := make([]byte, sha256.Size)
hex.Encode(encoded, sha256Hash.Sum(sum[0:0]))
r.HTTPRequest.Header[contentSha256Header] = []string{string(encoded)}
}
} | go | func computeBodyHashes(r *request.Request) {
if aws.BoolValue(r.Config.S3DisableContentMD5Validation) {
return
}
if r.IsPresigned() {
return
}
if r.Error != nil || !aws.IsReaderSeekable(r.Body) {
return
}
var md5Hash, sha256Hash hash.Hash
hashers := make([]io.Writer, 0, 2)
// Determine upfront which hashes can be set without overriding user
// provide header data.
if v := r.HTTPRequest.Header.Get(contentMD5Header); len(v) == 0 {
md5Hash = md5.New()
hashers = append(hashers, md5Hash)
}
if v := r.HTTPRequest.Header.Get(contentSha256Header); len(v) == 0 {
sha256Hash = sha256.New()
hashers = append(hashers, sha256Hash)
}
// Create the destination writer based on the hashes that are not already
// provided by the user.
var dst io.Writer
switch len(hashers) {
case 0:
return
case 1:
dst = hashers[0]
default:
dst = io.MultiWriter(hashers...)
}
if _, err := copySeekableBody(dst, r.Body); err != nil {
r.Error = awserr.New("BodyHashError", "failed to compute body hashes", err)
return
}
// For the hashes created, set the associated headers that the user did not
// already provide.
if md5Hash != nil {
sum := make([]byte, md5.Size)
encoded := make([]byte, md5Base64EncLen)
base64.StdEncoding.Encode(encoded, md5Hash.Sum(sum[0:0]))
r.HTTPRequest.Header[contentMD5Header] = []string{string(encoded)}
}
if sha256Hash != nil {
encoded := make([]byte, sha256HexEncLen)
sum := make([]byte, sha256.Size)
hex.Encode(encoded, sha256Hash.Sum(sum[0:0]))
r.HTTPRequest.Header[contentSha256Header] = []string{string(encoded)}
}
} | [
"func",
"computeBodyHashes",
"(",
"r",
"*",
"request",
".",
"Request",
")",
"{",
"if",
"aws",
".",
"BoolValue",
"(",
"r",
".",
"Config",
".",
"S3DisableContentMD5Validation",
")",
"{",
"return",
"\n",
"}",
"\n",
"if",
"r",
".",
"IsPresigned",
"(",
")",
"{",
"return",
"\n",
"}",
"\n",
"if",
"r",
".",
"Error",
"!=",
"nil",
"||",
"!",
"aws",
".",
"IsReaderSeekable",
"(",
"r",
".",
"Body",
")",
"{",
"return",
"\n",
"}",
"\n\n",
"var",
"md5Hash",
",",
"sha256Hash",
"hash",
".",
"Hash",
"\n",
"hashers",
":=",
"make",
"(",
"[",
"]",
"io",
".",
"Writer",
",",
"0",
",",
"2",
")",
"\n\n",
"// Determine upfront which hashes can be set without overriding user",
"// provide header data.",
"if",
"v",
":=",
"r",
".",
"HTTPRequest",
".",
"Header",
".",
"Get",
"(",
"contentMD5Header",
")",
";",
"len",
"(",
"v",
")",
"==",
"0",
"{",
"md5Hash",
"=",
"md5",
".",
"New",
"(",
")",
"\n",
"hashers",
"=",
"append",
"(",
"hashers",
",",
"md5Hash",
")",
"\n",
"}",
"\n\n",
"if",
"v",
":=",
"r",
".",
"HTTPRequest",
".",
"Header",
".",
"Get",
"(",
"contentSha256Header",
")",
";",
"len",
"(",
"v",
")",
"==",
"0",
"{",
"sha256Hash",
"=",
"sha256",
".",
"New",
"(",
")",
"\n",
"hashers",
"=",
"append",
"(",
"hashers",
",",
"sha256Hash",
")",
"\n",
"}",
"\n\n",
"// Create the destination writer based on the hashes that are not already",
"// provided by the user.",
"var",
"dst",
"io",
".",
"Writer",
"\n",
"switch",
"len",
"(",
"hashers",
")",
"{",
"case",
"0",
":",
"return",
"\n",
"case",
"1",
":",
"dst",
"=",
"hashers",
"[",
"0",
"]",
"\n",
"default",
":",
"dst",
"=",
"io",
".",
"MultiWriter",
"(",
"hashers",
"...",
")",
"\n",
"}",
"\n\n",
"if",
"_",
",",
"err",
":=",
"copySeekableBody",
"(",
"dst",
",",
"r",
".",
"Body",
")",
";",
"err",
"!=",
"nil",
"{",
"r",
".",
"Error",
"=",
"awserr",
".",
"New",
"(",
"\"",
"\"",
",",
"\"",
"\"",
",",
"err",
")",
"\n",
"return",
"\n",
"}",
"\n\n",
"// For the hashes created, set the associated headers that the user did not",
"// already provide.",
"if",
"md5Hash",
"!=",
"nil",
"{",
"sum",
":=",
"make",
"(",
"[",
"]",
"byte",
",",
"md5",
".",
"Size",
")",
"\n",
"encoded",
":=",
"make",
"(",
"[",
"]",
"byte",
",",
"md5Base64EncLen",
")",
"\n\n",
"base64",
".",
"StdEncoding",
".",
"Encode",
"(",
"encoded",
",",
"md5Hash",
".",
"Sum",
"(",
"sum",
"[",
"0",
":",
"0",
"]",
")",
")",
"\n",
"r",
".",
"HTTPRequest",
".",
"Header",
"[",
"contentMD5Header",
"]",
"=",
"[",
"]",
"string",
"{",
"string",
"(",
"encoded",
")",
"}",
"\n",
"}",
"\n\n",
"if",
"sha256Hash",
"!=",
"nil",
"{",
"encoded",
":=",
"make",
"(",
"[",
"]",
"byte",
",",
"sha256HexEncLen",
")",
"\n",
"sum",
":=",
"make",
"(",
"[",
"]",
"byte",
",",
"sha256",
".",
"Size",
")",
"\n\n",
"hex",
".",
"Encode",
"(",
"encoded",
",",
"sha256Hash",
".",
"Sum",
"(",
"sum",
"[",
"0",
":",
"0",
"]",
")",
")",
"\n",
"r",
".",
"HTTPRequest",
".",
"Header",
"[",
"contentSha256Header",
"]",
"=",
"[",
"]",
"string",
"{",
"string",
"(",
"encoded",
")",
"}",
"\n",
"}",
"\n",
"}"
] | // computeBodyHashes will add Content MD5 and Content Sha256 hashes to the
// request. If the body is not seekable or S3DisableContentMD5Validation set
// this handler will be ignored. | [
"computeBodyHashes",
"will",
"add",
"Content",
"MD5",
"and",
"Content",
"Sha256",
"hashes",
"to",
"the",
"request",
".",
"If",
"the",
"body",
"is",
"not",
"seekable",
"or",
"S3DisableContentMD5Validation",
"set",
"this",
"handler",
"will",
"be",
"ignored",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/s3/body_hash.go#L55-L115 |
360 | aws/aws-sdk-go | service/lexruntimeservice/api.go | SetAttachmentLinkUrl | func (s *GenericAttachment) SetAttachmentLinkUrl(v string) *GenericAttachment {
s.AttachmentLinkUrl = &v
return s
} | go | func (s *GenericAttachment) SetAttachmentLinkUrl(v string) *GenericAttachment {
s.AttachmentLinkUrl = &v
return s
} | [
"func",
"(",
"s",
"*",
"GenericAttachment",
")",
"SetAttachmentLinkUrl",
"(",
"v",
"string",
")",
"*",
"GenericAttachment",
"{",
"s",
".",
"AttachmentLinkUrl",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAttachmentLinkUrl sets the AttachmentLinkUrl field's value. | [
"SetAttachmentLinkUrl",
"sets",
"the",
"AttachmentLinkUrl",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/lexruntimeservice/api.go#L424-L427 |
361 | aws/aws-sdk-go | service/lexruntimeservice/api.go | SetButtons | func (s *GenericAttachment) SetButtons(v []*Button) *GenericAttachment {
s.Buttons = v
return s
} | go | func (s *GenericAttachment) SetButtons(v []*Button) *GenericAttachment {
s.Buttons = v
return s
} | [
"func",
"(",
"s",
"*",
"GenericAttachment",
")",
"SetButtons",
"(",
"v",
"[",
"]",
"*",
"Button",
")",
"*",
"GenericAttachment",
"{",
"s",
".",
"Buttons",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetButtons sets the Buttons field's value. | [
"SetButtons",
"sets",
"the",
"Buttons",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/lexruntimeservice/api.go#L430-L433 |
362 | aws/aws-sdk-go | service/lexruntimeservice/api.go | SetSubTitle | func (s *GenericAttachment) SetSubTitle(v string) *GenericAttachment {
s.SubTitle = &v
return s
} | go | func (s *GenericAttachment) SetSubTitle(v string) *GenericAttachment {
s.SubTitle = &v
return s
} | [
"func",
"(",
"s",
"*",
"GenericAttachment",
")",
"SetSubTitle",
"(",
"v",
"string",
")",
"*",
"GenericAttachment",
"{",
"s",
".",
"SubTitle",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSubTitle sets the SubTitle field's value. | [
"SetSubTitle",
"sets",
"the",
"SubTitle",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/lexruntimeservice/api.go#L442-L445 |
363 | aws/aws-sdk-go | service/lexruntimeservice/api.go | SetInputStream | func (s *PostContentInput) SetInputStream(v io.ReadSeeker) *PostContentInput {
s.InputStream = v
return s
} | go | func (s *PostContentInput) SetInputStream(v io.ReadSeeker) *PostContentInput {
s.InputStream = v
return s
} | [
"func",
"(",
"s",
"*",
"PostContentInput",
")",
"SetInputStream",
"(",
"v",
"io",
".",
"ReadSeeker",
")",
"*",
"PostContentInput",
"{",
"s",
".",
"InputStream",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetInputStream sets the InputStream field's value. | [
"SetInputStream",
"sets",
"the",
"InputStream",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/lexruntimeservice/api.go#L647-L650 |
364 | aws/aws-sdk-go | service/lexruntimeservice/api.go | SetInputTranscript | func (s *PostContentOutput) SetInputTranscript(v string) *PostContentOutput {
s.InputTranscript = &v
return s
} | go | func (s *PostContentOutput) SetInputTranscript(v string) *PostContentOutput {
s.InputTranscript = &v
return s
} | [
"func",
"(",
"s",
"*",
"PostContentOutput",
")",
"SetInputTranscript",
"(",
"v",
"string",
")",
"*",
"PostContentOutput",
"{",
"s",
".",
"InputTranscript",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetInputTranscript sets the InputTranscript field's value. | [
"SetInputTranscript",
"sets",
"the",
"InputTranscript",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/lexruntimeservice/api.go#L822-L825 |
365 | aws/aws-sdk-go | service/lexruntimeservice/api.go | SetInputText | func (s *PostTextInput) SetInputText(v string) *PostTextInput {
s.InputText = &v
return s
} | go | func (s *PostTextInput) SetInputText(v string) *PostTextInput {
s.InputText = &v
return s
} | [
"func",
"(",
"s",
"*",
"PostTextInput",
")",
"SetInputText",
"(",
"v",
"string",
")",
"*",
"PostTextInput",
"{",
"s",
".",
"InputText",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetInputText sets the InputText field's value. | [
"SetInputText",
"sets",
"the",
"InputText",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/lexruntimeservice/api.go#L979-L982 |
366 | aws/aws-sdk-go | service/lexruntimeservice/api.go | SetGenericAttachments | func (s *ResponseCard) SetGenericAttachments(v []*GenericAttachment) *ResponseCard {
s.GenericAttachments = v
return s
} | go | func (s *ResponseCard) SetGenericAttachments(v []*GenericAttachment) *ResponseCard {
s.GenericAttachments = v
return s
} | [
"func",
"(",
"s",
"*",
"ResponseCard",
")",
"SetGenericAttachments",
"(",
"v",
"[",
"]",
"*",
"GenericAttachment",
")",
"*",
"ResponseCard",
"{",
"s",
".",
"GenericAttachments",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetGenericAttachments sets the GenericAttachments field's value. | [
"SetGenericAttachments",
"sets",
"the",
"GenericAttachments",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/lexruntimeservice/api.go#L1203-L1206 |
367 | aws/aws-sdk-go | private/model/api/endpoint_trait.go | HasHostLabelMembers | func (s *Shape) HasHostLabelMembers() bool {
for _, ref := range s.MemberRefs {
if ref.HostLabel {
return true
}
}
return false
} | go | func (s *Shape) HasHostLabelMembers() bool {
for _, ref := range s.MemberRefs {
if ref.HostLabel {
return true
}
}
return false
} | [
"func",
"(",
"s",
"*",
"Shape",
")",
"HasHostLabelMembers",
"(",
")",
"bool",
"{",
"for",
"_",
",",
"ref",
":=",
"range",
"s",
".",
"MemberRefs",
"{",
"if",
"ref",
".",
"HostLabel",
"{",
"return",
"true",
"\n",
"}",
"\n",
"}",
"\n\n",
"return",
"false",
"\n",
"}"
] | // HasHostLabelMembers returns true if the shape contains any members which are
// decorated with the hostLabel trait. | [
"HasHostLabelMembers",
"returns",
"true",
"if",
"the",
"shape",
"contains",
"any",
"members",
"which",
"are",
"decorated",
"with",
"the",
"hostLabel",
"trait",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/private/model/api/endpoint_trait.go#L32-L40 |
368 | aws/aws-sdk-go | service/servicecatalog/api.go | SetSourcePortfolioId | func (s *AssociateProductWithPortfolioInput) SetSourcePortfolioId(v string) *AssociateProductWithPortfolioInput {
s.SourcePortfolioId = &v
return s
} | go | func (s *AssociateProductWithPortfolioInput) SetSourcePortfolioId(v string) *AssociateProductWithPortfolioInput {
s.SourcePortfolioId = &v
return s
} | [
"func",
"(",
"s",
"*",
"AssociateProductWithPortfolioInput",
")",
"SetSourcePortfolioId",
"(",
"v",
"string",
")",
"*",
"AssociateProductWithPortfolioInput",
"{",
"s",
".",
"SourcePortfolioId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSourcePortfolioId sets the SourcePortfolioId field's value. | [
"SetSourcePortfolioId",
"sets",
"the",
"SourcePortfolioId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L8109-L8112 |
369 | aws/aws-sdk-go | service/servicecatalog/api.go | SetConstraintId | func (s *ConstraintDetail) SetConstraintId(v string) *ConstraintDetail {
s.ConstraintId = &v
return s
} | go | func (s *ConstraintDetail) SetConstraintId(v string) *ConstraintDetail {
s.ConstraintId = &v
return s
} | [
"func",
"(",
"s",
"*",
"ConstraintDetail",
")",
"SetConstraintId",
"(",
"v",
"string",
")",
"*",
"ConstraintDetail",
"{",
"s",
".",
"ConstraintId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetConstraintId sets the ConstraintId field's value. | [
"SetConstraintId",
"sets",
"the",
"ConstraintId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L8567-L8570 |
370 | aws/aws-sdk-go | service/servicecatalog/api.go | SetSourceProductArn | func (s *CopyProductInput) SetSourceProductArn(v string) *CopyProductInput {
s.SourceProductArn = &v
return s
} | go | func (s *CopyProductInput) SetSourceProductArn(v string) *CopyProductInput {
s.SourceProductArn = &v
return s
} | [
"func",
"(",
"s",
"*",
"CopyProductInput",
")",
"SetSourceProductArn",
"(",
"v",
"string",
")",
"*",
"CopyProductInput",
"{",
"s",
".",
"SourceProductArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSourceProductArn sets the SourceProductArn field's value. | [
"SetSourceProductArn",
"sets",
"the",
"SourceProductArn",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L8719-L8722 |
371 | aws/aws-sdk-go | service/servicecatalog/api.go | SetSourceProvisioningArtifactIdentifiers | func (s *CopyProductInput) SetSourceProvisioningArtifactIdentifiers(v []map[string]*string) *CopyProductInput {
s.SourceProvisioningArtifactIdentifiers = v
return s
} | go | func (s *CopyProductInput) SetSourceProvisioningArtifactIdentifiers(v []map[string]*string) *CopyProductInput {
s.SourceProvisioningArtifactIdentifiers = v
return s
} | [
"func",
"(",
"s",
"*",
"CopyProductInput",
")",
"SetSourceProvisioningArtifactIdentifiers",
"(",
"v",
"[",
"]",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"CopyProductInput",
"{",
"s",
".",
"SourceProvisioningArtifactIdentifiers",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSourceProvisioningArtifactIdentifiers sets the SourceProvisioningArtifactIdentifiers field's value. | [
"SetSourceProvisioningArtifactIdentifiers",
"sets",
"the",
"SourceProvisioningArtifactIdentifiers",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L8725-L8728 |
372 | aws/aws-sdk-go | service/servicecatalog/api.go | SetTargetProductName | func (s *CopyProductInput) SetTargetProductName(v string) *CopyProductInput {
s.TargetProductName = &v
return s
} | go | func (s *CopyProductInput) SetTargetProductName(v string) *CopyProductInput {
s.TargetProductName = &v
return s
} | [
"func",
"(",
"s",
"*",
"CopyProductInput",
")",
"SetTargetProductName",
"(",
"v",
"string",
")",
"*",
"CopyProductInput",
"{",
"s",
".",
"TargetProductName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTargetProductName sets the TargetProductName field's value. | [
"SetTargetProductName",
"sets",
"the",
"TargetProductName",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L8737-L8740 |
373 | aws/aws-sdk-go | service/servicecatalog/api.go | SetCopyProductStatus | func (s *DescribeCopyProductStatusOutput) SetCopyProductStatus(v string) *DescribeCopyProductStatusOutput {
s.CopyProductStatus = &v
return s
} | go | func (s *DescribeCopyProductStatusOutput) SetCopyProductStatus(v string) *DescribeCopyProductStatusOutput {
s.CopyProductStatus = &v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeCopyProductStatusOutput",
")",
"SetCopyProductStatus",
"(",
"v",
"string",
")",
"*",
"DescribeCopyProductStatusOutput",
"{",
"s",
".",
"CopyProductStatus",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetCopyProductStatus sets the CopyProductStatus field's value. | [
"SetCopyProductStatus",
"sets",
"the",
"CopyProductStatus",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L10836-L10839 |
374 | aws/aws-sdk-go | service/servicecatalog/api.go | SetOrganizationNodeValue | func (s *DescribePortfolioShareStatusOutput) SetOrganizationNodeValue(v string) *DescribePortfolioShareStatusOutput {
s.OrganizationNodeValue = &v
return s
} | go | func (s *DescribePortfolioShareStatusOutput) SetOrganizationNodeValue(v string) *DescribePortfolioShareStatusOutput {
s.OrganizationNodeValue = &v
return s
} | [
"func",
"(",
"s",
"*",
"DescribePortfolioShareStatusOutput",
")",
"SetOrganizationNodeValue",
"(",
"v",
"string",
")",
"*",
"DescribePortfolioShareStatusOutput",
"{",
"s",
".",
"OrganizationNodeValue",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetOrganizationNodeValue sets the OrganizationNodeValue field's value. | [
"SetOrganizationNodeValue",
"sets",
"the",
"OrganizationNodeValue",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11032-L11035 |
375 | aws/aws-sdk-go | service/servicecatalog/api.go | SetShareDetails | func (s *DescribePortfolioShareStatusOutput) SetShareDetails(v *ShareDetails) *DescribePortfolioShareStatusOutput {
s.ShareDetails = v
return s
} | go | func (s *DescribePortfolioShareStatusOutput) SetShareDetails(v *ShareDetails) *DescribePortfolioShareStatusOutput {
s.ShareDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribePortfolioShareStatusOutput",
")",
"SetShareDetails",
"(",
"v",
"*",
"ShareDetails",
")",
"*",
"DescribePortfolioShareStatusOutput",
"{",
"s",
".",
"ShareDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetShareDetails sets the ShareDetails field's value. | [
"SetShareDetails",
"sets",
"the",
"ShareDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11050-L11053 |
376 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProvisioningArtifactSummaries | func (s *DescribeProductAsAdminOutput) SetProvisioningArtifactSummaries(v []*ProvisioningArtifactSummary) *DescribeProductAsAdminOutput {
s.ProvisioningArtifactSummaries = v
return s
} | go | func (s *DescribeProductAsAdminOutput) SetProvisioningArtifactSummaries(v []*ProvisioningArtifactSummary) *DescribeProductAsAdminOutput {
s.ProvisioningArtifactSummaries = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeProductAsAdminOutput",
")",
"SetProvisioningArtifactSummaries",
"(",
"v",
"[",
"]",
"*",
"ProvisioningArtifactSummary",
")",
"*",
"DescribeProductAsAdminOutput",
"{",
"s",
".",
"ProvisioningArtifactSummaries",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProvisioningArtifactSummaries sets the ProvisioningArtifactSummaries field's value. | [
"SetProvisioningArtifactSummaries",
"sets",
"the",
"ProvisioningArtifactSummaries",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11160-L11163 |
377 | aws/aws-sdk-go | service/servicecatalog/api.go | SetCloudWatchDashboards | func (s *DescribeProvisionedProductOutput) SetCloudWatchDashboards(v []*CloudWatchDashboard) *DescribeProvisionedProductOutput {
s.CloudWatchDashboards = v
return s
} | go | func (s *DescribeProvisionedProductOutput) SetCloudWatchDashboards(v []*CloudWatchDashboard) *DescribeProvisionedProductOutput {
s.CloudWatchDashboards = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeProvisionedProductOutput",
")",
"SetCloudWatchDashboards",
"(",
"v",
"[",
"]",
"*",
"CloudWatchDashboard",
")",
"*",
"DescribeProvisionedProductOutput",
"{",
"s",
".",
"CloudWatchDashboards",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetCloudWatchDashboards sets the CloudWatchDashboards field's value. | [
"SetCloudWatchDashboards",
"sets",
"the",
"CloudWatchDashboards",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11439-L11442 |
378 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProvisionedProductDetail | func (s *DescribeProvisionedProductOutput) SetProvisionedProductDetail(v *ProvisionedProductDetail) *DescribeProvisionedProductOutput {
s.ProvisionedProductDetail = v
return s
} | go | func (s *DescribeProvisionedProductOutput) SetProvisionedProductDetail(v *ProvisionedProductDetail) *DescribeProvisionedProductOutput {
s.ProvisionedProductDetail = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeProvisionedProductOutput",
")",
"SetProvisionedProductDetail",
"(",
"v",
"*",
"ProvisionedProductDetail",
")",
"*",
"DescribeProvisionedProductOutput",
"{",
"s",
".",
"ProvisionedProductDetail",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProvisionedProductDetail sets the ProvisionedProductDetail field's value. | [
"SetProvisionedProductDetail",
"sets",
"the",
"ProvisionedProductDetail",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11445-L11448 |
379 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProvisionedProductPlanDetails | func (s *DescribeProvisionedProductPlanOutput) SetProvisionedProductPlanDetails(v *ProvisionedProductPlanDetails) *DescribeProvisionedProductPlanOutput {
s.ProvisionedProductPlanDetails = v
return s
} | go | func (s *DescribeProvisionedProductPlanOutput) SetProvisionedProductPlanDetails(v *ProvisionedProductPlanDetails) *DescribeProvisionedProductPlanOutput {
s.ProvisionedProductPlanDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeProvisionedProductPlanOutput",
")",
"SetProvisionedProductPlanDetails",
"(",
"v",
"*",
"ProvisionedProductPlanDetails",
")",
"*",
"DescribeProvisionedProductPlanOutput",
"{",
"s",
".",
"ProvisionedProductPlanDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProvisionedProductPlanDetails sets the ProvisionedProductPlanDetails field's value. | [
"SetProvisionedProductPlanDetails",
"sets",
"the",
"ProvisionedProductPlanDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11556-L11559 |
380 | aws/aws-sdk-go | service/servicecatalog/api.go | SetResourceChanges | func (s *DescribeProvisionedProductPlanOutput) SetResourceChanges(v []*ResourceChange) *DescribeProvisionedProductPlanOutput {
s.ResourceChanges = v
return s
} | go | func (s *DescribeProvisionedProductPlanOutput) SetResourceChanges(v []*ResourceChange) *DescribeProvisionedProductPlanOutput {
s.ResourceChanges = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeProvisionedProductPlanOutput",
")",
"SetResourceChanges",
"(",
"v",
"[",
"]",
"*",
"ResourceChange",
")",
"*",
"DescribeProvisionedProductPlanOutput",
"{",
"s",
".",
"ResourceChanges",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetResourceChanges sets the ResourceChanges field's value. | [
"SetResourceChanges",
"sets",
"the",
"ResourceChanges",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11562-L11565 |
381 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProvisioningArtifactPreferences | func (s *DescribeProvisioningParametersOutput) SetProvisioningArtifactPreferences(v *ProvisioningArtifactPreferences) *DescribeProvisioningParametersOutput {
s.ProvisioningArtifactPreferences = v
return s
} | go | func (s *DescribeProvisioningParametersOutput) SetProvisioningArtifactPreferences(v *ProvisioningArtifactPreferences) *DescribeProvisioningParametersOutput {
s.ProvisioningArtifactPreferences = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeProvisioningParametersOutput",
")",
"SetProvisioningArtifactPreferences",
"(",
"v",
"*",
"ProvisioningArtifactPreferences",
")",
"*",
"DescribeProvisioningParametersOutput",
"{",
"s",
".",
"ProvisioningArtifactPreferences",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProvisioningArtifactPreferences sets the ProvisioningArtifactPreferences field's value. | [
"SetProvisioningArtifactPreferences",
"sets",
"the",
"ProvisioningArtifactPreferences",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11821-L11824 |
382 | aws/aws-sdk-go | service/servicecatalog/api.go | SetUsageInstructions | func (s *DescribeProvisioningParametersOutput) SetUsageInstructions(v []*UsageInstruction) *DescribeProvisioningParametersOutput {
s.UsageInstructions = v
return s
} | go | func (s *DescribeProvisioningParametersOutput) SetUsageInstructions(v []*UsageInstruction) *DescribeProvisioningParametersOutput {
s.UsageInstructions = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeProvisioningParametersOutput",
")",
"SetUsageInstructions",
"(",
"v",
"[",
"]",
"*",
"UsageInstruction",
")",
"*",
"DescribeProvisioningParametersOutput",
"{",
"s",
".",
"UsageInstructions",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetUsageInstructions sets the UsageInstructions field's value. | [
"SetUsageInstructions",
"sets",
"the",
"UsageInstructions",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11833-L11836 |
383 | aws/aws-sdk-go | service/servicecatalog/api.go | SetRecordOutputs | func (s *DescribeRecordOutput) SetRecordOutputs(v []*RecordOutput) *DescribeRecordOutput {
s.RecordOutputs = v
return s
} | go | func (s *DescribeRecordOutput) SetRecordOutputs(v []*RecordOutput) *DescribeRecordOutput {
s.RecordOutputs = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeRecordOutput",
")",
"SetRecordOutputs",
"(",
"v",
"[",
"]",
"*",
"RecordOutput",
")",
"*",
"DescribeRecordOutput",
"{",
"s",
".",
"RecordOutputs",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetRecordOutputs sets the RecordOutputs field's value. | [
"SetRecordOutputs",
"sets",
"the",
"RecordOutputs",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L11953-L11956 |
384 | aws/aws-sdk-go | service/servicecatalog/api.go | SetExecuteToken | func (s *ExecuteProvisionedProductServiceActionInput) SetExecuteToken(v string) *ExecuteProvisionedProductServiceActionInput {
s.ExecuteToken = &v
return s
} | go | func (s *ExecuteProvisionedProductServiceActionInput) SetExecuteToken(v string) *ExecuteProvisionedProductServiceActionInput {
s.ExecuteToken = &v
return s
} | [
"func",
"(",
"s",
"*",
"ExecuteProvisionedProductServiceActionInput",
")",
"SetExecuteToken",
"(",
"v",
"string",
")",
"*",
"ExecuteProvisionedProductServiceActionInput",
"{",
"s",
".",
"ExecuteToken",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetExecuteToken sets the ExecuteToken field's value. | [
"SetExecuteToken",
"sets",
"the",
"ExecuteToken",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L12738-L12741 |
385 | aws/aws-sdk-go | service/servicecatalog/api.go | SetAccessStatus | func (s *GetAWSOrganizationsAccessStatusOutput) SetAccessStatus(v string) *GetAWSOrganizationsAccessStatusOutput {
s.AccessStatus = &v
return s
} | go | func (s *GetAWSOrganizationsAccessStatusOutput) SetAccessStatus(v string) *GetAWSOrganizationsAccessStatusOutput {
s.AccessStatus = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetAWSOrganizationsAccessStatusOutput",
")",
"SetAccessStatus",
"(",
"v",
"string",
")",
"*",
"GetAWSOrganizationsAccessStatusOutput",
"{",
"s",
".",
"AccessStatus",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAccessStatus sets the AccessStatus field's value. | [
"SetAccessStatus",
"sets",
"the",
"AccessStatus",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L12872-L12875 |
386 | aws/aws-sdk-go | service/servicecatalog/api.go | SetConstraintDetails | func (s *ListConstraintsForPortfolioOutput) SetConstraintDetails(v []*ConstraintDetail) *ListConstraintsForPortfolioOutput {
s.ConstraintDetails = v
return s
} | go | func (s *ListConstraintsForPortfolioOutput) SetConstraintDetails(v []*ConstraintDetail) *ListConstraintsForPortfolioOutput {
s.ConstraintDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"ListConstraintsForPortfolioOutput",
")",
"SetConstraintDetails",
"(",
"v",
"[",
"]",
"*",
"ConstraintDetail",
")",
"*",
"ListConstraintsForPortfolioOutput",
"{",
"s",
".",
"ConstraintDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetConstraintDetails sets the ConstraintDetails field's value. | [
"SetConstraintDetails",
"sets",
"the",
"ConstraintDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L13242-L13245 |
387 | aws/aws-sdk-go | service/servicecatalog/api.go | SetLaunchPathSummaries | func (s *ListLaunchPathsOutput) SetLaunchPathSummaries(v []*LaunchPathSummary) *ListLaunchPathsOutput {
s.LaunchPathSummaries = v
return s
} | go | func (s *ListLaunchPathsOutput) SetLaunchPathSummaries(v []*LaunchPathSummary) *ListLaunchPathsOutput {
s.LaunchPathSummaries = v
return s
} | [
"func",
"(",
"s",
"*",
"ListLaunchPathsOutput",
")",
"SetLaunchPathSummaries",
"(",
"v",
"[",
"]",
"*",
"LaunchPathSummary",
")",
"*",
"ListLaunchPathsOutput",
"{",
"s",
".",
"LaunchPathSummaries",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetLaunchPathSummaries sets the LaunchPathSummaries field's value. | [
"SetLaunchPathSummaries",
"sets",
"the",
"LaunchPathSummaries",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L13350-L13353 |
388 | aws/aws-sdk-go | service/servicecatalog/api.go | SetOrganizationNodeType | func (s *ListOrganizationPortfolioAccessInput) SetOrganizationNodeType(v string) *ListOrganizationPortfolioAccessInput {
s.OrganizationNodeType = &v
return s
} | go | func (s *ListOrganizationPortfolioAccessInput) SetOrganizationNodeType(v string) *ListOrganizationPortfolioAccessInput {
s.OrganizationNodeType = &v
return s
} | [
"func",
"(",
"s",
"*",
"ListOrganizationPortfolioAccessInput",
")",
"SetOrganizationNodeType",
"(",
"v",
"string",
")",
"*",
"ListOrganizationPortfolioAccessInput",
"{",
"s",
".",
"OrganizationNodeType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetOrganizationNodeType sets the OrganizationNodeType field's value. | [
"SetOrganizationNodeType",
"sets",
"the",
"OrganizationNodeType",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L13434-L13437 |
389 | aws/aws-sdk-go | service/servicecatalog/api.go | SetOrganizationNodes | func (s *ListOrganizationPortfolioAccessOutput) SetOrganizationNodes(v []*OrganizationNode) *ListOrganizationPortfolioAccessOutput {
s.OrganizationNodes = v
return s
} | go | func (s *ListOrganizationPortfolioAccessOutput) SetOrganizationNodes(v []*OrganizationNode) *ListOrganizationPortfolioAccessOutput {
s.OrganizationNodes = v
return s
} | [
"func",
"(",
"s",
"*",
"ListOrganizationPortfolioAccessOutput",
")",
"SetOrganizationNodes",
"(",
"v",
"[",
"]",
"*",
"OrganizationNode",
")",
"*",
"ListOrganizationPortfolioAccessOutput",
"{",
"s",
".",
"OrganizationNodes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetOrganizationNodes sets the OrganizationNodes field's value. | [
"SetOrganizationNodes",
"sets",
"the",
"OrganizationNodes",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L13485-L13488 |
390 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProvisionedProductPlans | func (s *ListProvisionedProductPlansOutput) SetProvisionedProductPlans(v []*ProvisionedProductPlanSummary) *ListProvisionedProductPlansOutput {
s.ProvisionedProductPlans = v
return s
} | go | func (s *ListProvisionedProductPlansOutput) SetProvisionedProductPlans(v []*ProvisionedProductPlanSummary) *ListProvisionedProductPlansOutput {
s.ProvisionedProductPlans = v
return s
} | [
"func",
"(",
"s",
"*",
"ListProvisionedProductPlansOutput",
")",
"SetProvisionedProductPlans",
"(",
"v",
"[",
"]",
"*",
"ProvisionedProductPlanSummary",
")",
"*",
"ListProvisionedProductPlansOutput",
"{",
"s",
".",
"ProvisionedProductPlans",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProvisionedProductPlans sets the ProvisionedProductPlans field's value. | [
"SetProvisionedProductPlans",
"sets",
"the",
"ProvisionedProductPlans",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L13983-L13986 |
391 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProvisioningArtifactViews | func (s *ListProvisioningArtifactsForServiceActionOutput) SetProvisioningArtifactViews(v []*ProvisioningArtifactView) *ListProvisioningArtifactsForServiceActionOutput {
s.ProvisioningArtifactViews = v
return s
} | go | func (s *ListProvisioningArtifactsForServiceActionOutput) SetProvisioningArtifactViews(v []*ProvisioningArtifactView) *ListProvisioningArtifactsForServiceActionOutput {
s.ProvisioningArtifactViews = v
return s
} | [
"func",
"(",
"s",
"*",
"ListProvisioningArtifactsForServiceActionOutput",
")",
"SetProvisioningArtifactViews",
"(",
"v",
"[",
"]",
"*",
"ProvisioningArtifactView",
")",
"*",
"ListProvisioningArtifactsForServiceActionOutput",
"{",
"s",
".",
"ProvisioningArtifactViews",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProvisioningArtifactViews sets the ProvisioningArtifactViews field's value. | [
"SetProvisioningArtifactViews",
"sets",
"the",
"ProvisioningArtifactViews",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L14092-L14095 |
392 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProvisioningArtifactDetails | func (s *ListProvisioningArtifactsOutput) SetProvisioningArtifactDetails(v []*ProvisioningArtifactDetail) *ListProvisioningArtifactsOutput {
s.ProvisioningArtifactDetails = v
return s
} | go | func (s *ListProvisioningArtifactsOutput) SetProvisioningArtifactDetails(v []*ProvisioningArtifactDetail) *ListProvisioningArtifactsOutput {
s.ProvisioningArtifactDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"ListProvisioningArtifactsOutput",
")",
"SetProvisioningArtifactDetails",
"(",
"v",
"[",
"]",
"*",
"ProvisioningArtifactDetail",
")",
"*",
"ListProvisioningArtifactsOutput",
"{",
"s",
".",
"ProvisioningArtifactDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProvisioningArtifactDetails sets the ProvisioningArtifactDetails field's value. | [
"SetProvisioningArtifactDetails",
"sets",
"the",
"ProvisioningArtifactDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L14181-L14184 |
393 | aws/aws-sdk-go | service/servicecatalog/api.go | SetSearchFilter | func (s *ListRecordHistoryInput) SetSearchFilter(v *ListRecordHistorySearchFilter) *ListRecordHistoryInput {
s.SearchFilter = v
return s
} | go | func (s *ListRecordHistoryInput) SetSearchFilter(v *ListRecordHistorySearchFilter) *ListRecordHistoryInput {
s.SearchFilter = v
return s
} | [
"func",
"(",
"s",
"*",
"ListRecordHistoryInput",
")",
"SetSearchFilter",
"(",
"v",
"*",
"ListRecordHistorySearchFilter",
")",
"*",
"ListRecordHistoryInput",
"{",
"s",
".",
"SearchFilter",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSearchFilter sets the SearchFilter field's value. | [
"SetSearchFilter",
"sets",
"the",
"SearchFilter",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L14247-L14250 |
394 | aws/aws-sdk-go | service/servicecatalog/api.go | SetRecordDetails | func (s *ListRecordHistoryOutput) SetRecordDetails(v []*RecordDetail) *ListRecordHistoryOutput {
s.RecordDetails = v
return s
} | go | func (s *ListRecordHistoryOutput) SetRecordDetails(v []*RecordDetail) *ListRecordHistoryOutput {
s.RecordDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"ListRecordHistoryOutput",
")",
"SetRecordDetails",
"(",
"v",
"[",
"]",
"*",
"RecordDetail",
")",
"*",
"ListRecordHistoryOutput",
"{",
"s",
".",
"RecordDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetRecordDetails sets the RecordDetails field's value. | [
"SetRecordDetails",
"sets",
"the",
"RecordDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L14280-L14283 |
395 | aws/aws-sdk-go | service/servicecatalog/api.go | SetResourceDetails | func (s *ListResourcesForTagOptionOutput) SetResourceDetails(v []*ResourceDetail) *ListResourcesForTagOptionOutput {
s.ResourceDetails = v
return s
} | go | func (s *ListResourcesForTagOptionOutput) SetResourceDetails(v []*ResourceDetail) *ListResourcesForTagOptionOutput {
s.ResourceDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"ListResourcesForTagOptionOutput",
")",
"SetResourceDetails",
"(",
"v",
"[",
"]",
"*",
"ResourceDetail",
")",
"*",
"ListResourcesForTagOptionOutput",
"{",
"s",
".",
"ResourceDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetResourceDetails sets the ResourceDetails field's value. | [
"SetResourceDetails",
"sets",
"the",
"ResourceDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L14424-L14427 |
396 | aws/aws-sdk-go | service/servicecatalog/api.go | SetTagOptionDetails | func (s *ListTagOptionsOutput) SetTagOptionDetails(v []*TagOptionDetail) *ListTagOptionsOutput {
s.TagOptionDetails = v
return s
} | go | func (s *ListTagOptionsOutput) SetTagOptionDetails(v []*TagOptionDetail) *ListTagOptionsOutput {
s.TagOptionDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"ListTagOptionsOutput",
")",
"SetTagOptionDetails",
"(",
"v",
"[",
"]",
"*",
"TagOptionDetail",
")",
"*",
"ListTagOptionsOutput",
"{",
"s",
".",
"TagOptionDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTagOptionDetails sets the TagOptionDetails field's value. | [
"SetTagOptionDetails",
"sets",
"the",
"TagOptionDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L14781-L14784 |
397 | aws/aws-sdk-go | service/servicecatalog/api.go | SetApproximateCount | func (s *ProductViewAggregationValue) SetApproximateCount(v int64) *ProductViewAggregationValue {
s.ApproximateCount = &v
return s
} | go | func (s *ProductViewAggregationValue) SetApproximateCount(v int64) *ProductViewAggregationValue {
s.ApproximateCount = &v
return s
} | [
"func",
"(",
"s",
"*",
"ProductViewAggregationValue",
")",
"SetApproximateCount",
"(",
"v",
"int64",
")",
"*",
"ProductViewAggregationValue",
"{",
"s",
".",
"ApproximateCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetApproximateCount sets the ApproximateCount field's value. | [
"SetApproximateCount",
"sets",
"the",
"ApproximateCount",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L14968-L14971 |
398 | aws/aws-sdk-go | service/servicecatalog/api.go | SetProductARN | func (s *ProductViewDetail) SetProductARN(v string) *ProductViewDetail {
s.ProductARN = &v
return s
} | go | func (s *ProductViewDetail) SetProductARN(v string) *ProductViewDetail {
s.ProductARN = &v
return s
} | [
"func",
"(",
"s",
"*",
"ProductViewDetail",
")",
"SetProductARN",
"(",
"v",
"string",
")",
"*",
"ProductViewDetail",
"{",
"s",
".",
"ProductARN",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetProductARN sets the ProductARN field's value. | [
"SetProductARN",
"sets",
"the",
"ProductARN",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L15020-L15023 |
399 | aws/aws-sdk-go | service/servicecatalog/api.go | SetHasDefaultPath | func (s *ProductViewSummary) SetHasDefaultPath(v bool) *ProductViewSummary {
s.HasDefaultPath = &v
return s
} | go | func (s *ProductViewSummary) SetHasDefaultPath(v bool) *ProductViewSummary {
s.HasDefaultPath = &v
return s
} | [
"func",
"(",
"s",
"*",
"ProductViewSummary",
")",
"SetHasDefaultPath",
"(",
"v",
"bool",
")",
"*",
"ProductViewSummary",
"{",
"s",
".",
"HasDefaultPath",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetHasDefaultPath sets the HasDefaultPath field's value. | [
"SetHasDefaultPath",
"sets",
"the",
"HasDefaultPath",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/servicecatalog/api.go#L15099-L15102 |